Going with the Intraday Mini-Flow!!

Status
Not open for further replies.
Re: Saint's Intraday Miniflow - live discussion

hi freinds,

Use this AFL to plot Pivots.Please comment, whether it's plotting pivot as per the definition of this miniflow method or not. If not where is missing?

Please give me clear idea of Move1/ Move 2 so that I may code for a pop up window to give commentary on every development relevant to our trading method.

///////////////////// LowerPivot///////////HigherPivot/////////
Lp=Ref(L,-2)>Ref(L,-1) AND L>Ref(L,-1);
r=(H-L)/4;
Hp=Ref(H,-2)<Ref(H,-1)AND H<Ref(H,-1);
for( i = 0; i < BarCount; i++ )
{
if( Lp ) PlotText( "LP", i-1, L[ i-1 ]-r,colorRed,bkcolor=ParamColor("LP Background Color",colorYellow ));
if(Hp)PlotText("HP",i-1,H[i-1] + r[ i ],colorBlue,bkcolor=ParamColor("HP Background Color ",colorWhite));
}
////////////////////lee_c_kooper/////////////////////////////////
 
Re: Saint's Intraday Miniflow - live discussion

hi freinds,

Use this AFL to plot Pivots.Please comment, whether it's plotting pivot as per the definition of this miniflow method or not. If not where is missing?

Please give me clear idea of Move1/ Move 2 so that I may code for a pop up window to give commentary on every development relevant to our trading method.

///////////////////// LowerPivot///////////HigherPivot/////////
Lp=Ref(L,-2)>Ref(L,-1) AND L>Ref(L,-1);
r=(H-L)/4;
Hp=Ref(H,-2)<Ref(H,-1)AND H<Ref(H,-1);
for( i = 0; i < BarCount; i++ )
{
if( Lp ) PlotText( "LP", i-1, L[ i-1 ]-r,colorRed,bkcolor=ParamColor("LP Background Color",colorYellow ));
if(Hp)PlotText("HP",i-1,H[i-1] + r[ i ],colorBlue,bkcolor=ParamColor("HP Background Color ",colorWhite));
}
////////////////////lee_c_kooper/////////////////////////////////


Thank you Lee
 
Re: Saint's Intraday Miniflow - live discussion

hi freinds,

Use this AFL to plot Pivots.Please comment, whether it's plotting pivot as per the definition of this miniflow method or not. If not where is missing?

Please give me clear idea of Move1/ Move 2 so that I may code for a pop up window to give commentary on every development relevant to our trading method.

///////////////////// LowerPivot///////////HigherPivot/////////
Lp=Ref(L,-2)>Ref(L,-1) AND L>Ref(L,-1);
r=(H-L)/4;
Hp=Ref(H,-2)<Ref(H,-1)AND H<Ref(H,-1);
for( i = 0; i < BarCount; i++ )
{
if( Lp ) PlotText( "LP", i-1, L[ i-1 ]-r,colorRed,bkcolor=ParamColor("LP Background Color",colorYellow ));
if(Hp)PlotText("HP",i-1,H[i-1] + r[ i ],colorBlue,bkcolor=ParamColor("HP Background Color ",colorWhite));
}
////////////////////lee_c_kooper/////////////////////////////////


Please Note: Signal confirmed only after completion of bar next to Pivot.When Bar is in formation signal may appear/disappear.
 

hitesh05

Well-Known Member
Re: Saint's Intraday Miniflow - live discussion

hi freinds,

Use this AFL to plot Pivots.Please comment, whether it's plotting pivot as per the definition of this miniflow method or not. If not where is missing?

Please give me clear idea of Move1/ Move 2 so that I may code for a pop up window to give commentary on every development relevant to our trading method.

///////////////////// LowerPivot///////////HigherPivot/////////
Lp=Ref(L,-2)>Ref(L,-1) AND L>Ref(L,-1);
r=(H-L)/4;
Hp=Ref(H,-2)<Ref(H,-1)AND H<Ref(H,-1);
for( i = 0; i < BarCount; i++ )
{
if( Lp ) PlotText( "LP", i-1, L[ i-1 ]-r,colorRed,bkcolor=ParamColor("LP Background Color",colorYellow ));
if(Hp)PlotText("HP",i-1,H[i-1] + r[ i ],colorBlue,bkcolor=ParamColor("HP Background Color ",colorWhite));
}
////////////////////lee_c_kooper/////////////////////////////////



Thanks Lee, Great job

Regards
Hitesh
 

manojkch

Well-Known Member
Re: Saint's Intraday Miniflow - live discussion

Hello Manoj,

Did you manage to get permission for discussing developments?
Dear Amit,
Thank you for remembering regarding developments. Yet, nobody replied to my post, may be unnoticed, hence I will wait till I get permission.

Regards,
Manoj
 
Status
Not open for further replies.