Range plotter by using previous highest and lowest for Amibroker (AFL)
waikimlwk over 14 years ago Amibroker (AFL)
Plot the range by using previous 5 days’ high and low.
Indicator / Formula
Copy & Paste Friendly
Ll = LLV(L,5);
Hh = HHV(H,5);
PlotOHLC(O,H,L,C,"",0,styleCandle);
Plot(Ll,"L",4,8);
Plot(Hh, "H",5,8);0 comments
Leave Comment
Please login here to leave a comment.