Skip to main content

RSI Time Frame 15min for Amibroker (AFL)

kamyk almost 15 years ago Amibroker (AFL)

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

This formula shows the RSI 15min in one window with rsi 5min
For example: The window settings 5min and RSI 15min.

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("RSI");
TimeFrameSet(in15Minute);
SetChartOptions(0,0,chartGrid30|chartGrid70);
periods = Param( "Periods", 15, 1, 200, 1 );
Plot( RSI( periods), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style")  );
TimeFrameRestore();
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.