Can any one have this afl

mastermind007

Well-Known Member
#13
Hello santhosh2010

Don't get fooled by names like Flip. It is a plain 24 day moving average

I challenge you to plot both of these AFLs and find even 1 difference between values

Code:
t=Param("t", 24, 1, 100, 1);

Top = Sum(High, t) / t;
Bottom = Sum(Low, t) / t;
av=(Top+Bottom)/2;
mc=IIf(av>C, colorRed, colorGreen);
Plot(av, "", mc, styleStaircase);
AND

Code:
t=Param("t", 24, 1, 100, 1);
av=MA( (H + L) / 2, t );
mc=IIf(av>C, colorRed, colorGreen);
Plot(av, "", mc, styleStaircase);
 

Similar threads