// Downloaded From https://www.WiseStockTrader.com
_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();