Can any one have this afl

Joined
Sep 1, 2010
Messages
1,806
Likes
4,330
Location
salem,tamilnadu
#11
Last edited:

mastermind007

Well-Known Member
Joined
Dec 17, 2011
Messages
2,495
Likes
2,500
#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

Broker Special Offers