ATR plot for Amibroker (AFL)
kaleem over 15 years ago Amibroker (AFL)
Plotting the ATR
Indicator / Formula
Copy & Paste Friendly
//plotting the ATR;
y=C+2*ATR(10);
z=C-2*ATR(10);
PlotOHLC(O,H,L,C,"",5,styleCandle);
Plot(y,"",4,8);
Plot(z,"",1,8);
"\n C :"+ C ;
"\ ATR(10) :"+ ATR(10) ;
"\ z :"+ z ;0 comments
Leave Comment
Please login here to leave a comment.