Skip to main content

RSI-Macd for Amibroker (AFL)

intool over 13 years ago Amibroker (AFL)

  • Rating:
    1 / 5 (Votes 1)
  • Tags:
    oscillator, amibroker

Removed due to author complaint.

This afl code is a compenation of RSI & MACD.

You cannot view the code for the following reasons:
  • The indicator has not yet been approved by the Administrator.

3 comments

3. savage
over 13 years ago

////////////////// Add signal /////////////////////

Buy=Colt==colorWhite;
Sell=Colt==colorRed;

Buy=ExRem(Buy,Sell);
Sell=ExRem(Sell,Buy);

PlotShapes(IIf(Buy , shapeUpArrow, shapeNone),colorGreen); 
PlotShapes(IIf(Sell, shapeDownArrow, shapeNone),colorRed);

Leave Comment

Please login here to leave a comment.