Skip to main content

RSI Chart for Amibroker (AFL)

suicide almost 16 years ago Amibroker (AFL)

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

It shows the RSI in usual candlestick format, with O,H,L,C values of RSI of selected time frame. It is gud for those who trade RSI.

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("RSI Chart");
SetChartOptions(0,0,chartGrid30|chartGrid70);
periods = Param( "Periods", 15, 1, 200, 1 );

O1 = RSIa( Open, periods );
H1 = RSIa( High, periods );
L1 = RSIa( Low, periods );
C1 = RSIa( Close, periods );

PlotOHLC( O1, H1, L1, C1, "RSI Chart",  styleCandle  );
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.