AFL Request Plz Plz

#1
Hi Friends,

Can somebody code an AFL with exploration features for the following :

1. It should throw the Three Days SMA, Five Days SMA, Ten Days SMA, Fifteen Days SMA, Twenty Two Days SMA, Thirty Days SMA, Fifty Days SMA, Hundred Days SMA and Two Hundred Days SMA values for the scrip ...

Can somebody help Plz ... ?

Thanks in advance

Regards
 

casoni

Well-Known Member
#2
Hi Friends,

Can somebody code an AFL with exploration features for the following :

1. It should throw the Three Days SMA, Five Days SMA, Ten Days SMA, Fifteen Days SMA, Twenty Two Days SMA, Thirty Days SMA, Fifty Days SMA, Hundred Days SMA and Two Hundred Days SMA values for the scrip ...

Can somebody help Plz ... ?

Thanks in advance

Regards

m1=MA(C,3);
m2=MA(C,5);
m3=MA(C,10);
m4=MA(C,15);
m5=MA(C,100);
Filter=1;
AddColumn(m1, "1",1, colorDefault);
AddColumn(m2, "2",1, colorDefault);
AddColumn(m3, "3",1, colorDefault);
AddColumn(m4, "4",1, colorDefault);
AddColumn(m5, "5",1, colorDefault);
 
#3
I have changed the Column names from 1,2,3,4,5 to SMA3,10,20,50,200.. Easy to read..


HTML:
m1=MA(C,3);
m2=MA(C,5);
m3=MA(C,10);
m4=MA(C,15);
m5=MA(C,100);
Filter=1;
AddColumn(M1, "SMA3",1, colorDefault);
AddColumn(M2, "SMA10",1, colorDefault);
AddColumn(M3, "SMA20",1, colorDefault);
AddColumn(M4, "SMA50",1, colorDefault);
AddColumn(M5, "SMA200",1, colorDefault);
Happy trading
 

Similar threads