Skip to main content

RSI Composite for Amibroker (AFL)

shamsmoin almost 16 years ago Amibroker (AFL)

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

Simplified with few straight line

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("RSI 5 Day");
SetChartOptions(0,0,chartGrid20|chartGrid50|chartGrid70|Chartgrid80);
periods = Param( "Periods", 5 );
Plot( RSI( periods), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style",styleThick)  );
Plot (20, "", colorWhite, styleDashed, styleNoLabel);
Plot (50, "", colorPink, styleNoLabel);
Plot (70, "", colorRed, styleNoLabel);
Plot (80, "", colorDarkYellow, styleNoLabel);
_SECTION_END();

_SECTION_BEGIN("RSI 14 Day");
SetChartOptions(0,0,chartGrid20|chartGrid50|chartGrid70|Chartgrid80);
periods = Param( "Periods", 14 );
Plot( RSI( periods), _DEFAULT_NAME(), ParamColor( "Color", colorYellow ), ParamStyle("Style",styleThick)  );
Plot (30, "", colorGreen, styleThick, styleNoLabel);
Plot (50, "", colorPink, styleNoLabel);
Plot (70, "", colorRed, styleNoLabel);
Plot (80, "", colorDarkYellow, styleNoLabel);
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.