Skip to main content

High and Low 1 year for Amibroker (AFL)

davitrader about 11 years ago Amibroker (AFL)

  • Rating:
    3 / 5 (Votes 7)
  • Tags:
    amibroker

The lines indicate High and Low one year later

Screenshots

Indicator / Formula

Copy & Paste Friendly
CanaleH = Ref(HHV(H, 260), -1);
CanaleL = Ref(LLV(L, 260), -1);
Mediana = (CanaleH + CanaleL)/2;
Plot(CanaleH, "", colorOrange, styleLine);
Plot(CanaleL, "", colorOrange, styleLine);
//Plot(Medium, "Medium", colorDarkGreen, styleLine);
Title = EncodeColor(colorBlack)+ "Max and min 1 year";
Plot(C, "", colorBlack, styleCandle);

0 comments

Leave Comment

Please login here to leave a comment.