Skip to main content

Behgozin Roc for Amibroker (AFL)

hotaro3 over 13 years ago Amibroker (AFL)

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

This is a very Simple Indicator using Rate of Change of Price in 5, 10 and 20 time frame. The total values of these ROCs if is negative no action for buying but by cross Zero Line Buy starts. For selling or closing the condition only the Roc for 5 must cross zero line. thank you in advance for your comments

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("BehgozinRoc");

Sl1= ROC(Close,5);
Sl2=ROC(Close,10);
Sl3=ROC(Close,20);
Plot(0,"BehRoc",6,styleThick);
Plot(Sl1,"\nSl5",5,styleThick);
Plot(Sl2,"Sl10",4,styleThick);
Plot(Sl3,"Sl20",3,styleThick);
Plot(Sl1+Sl2+Sl3,"SlTotal",1,styleThick);
_SECTION_END();

5 comments

over 13 years ago

Good AFL sir… thanks for sharing..
sir i also want to know that Line Indicator on your price chart ( in red and black color).
can you share this one…

Leave Comment

Please login here to leave a comment.