Skip to main content

Simple MA BB buy & sell for Amibroker (AFL)

aligh over 15 years ago Amibroker (AFL)

  • Rating:
    3 / 5 (Votes 3)
  • Tags:
    trading system, amibroker

You can put this indicator on another chart it will sign buy & sell point

Indicator / Formula

Copy & Paste Friendly
Buy=MA(C,20)<C AND Cross(C,BBandBot(C,20,2));
Sell=MA(C,20)>C AND Cross(BBandTop(C,20,2),C);
PlotShapes(IIf(Buy,shapeUpArrow ,shapeNone),colorGreen,0,L,-10);
PlotShapes(IIf(Sell,shapeUpArrow ,shapeNone),colorRed,0,H,-10);

0 comments

Leave Comment

Please login here to leave a comment.