// Downloaded From https://www.WiseStockTrader.com _SECTION_BEGIN("RMI"); periods = Param( "Periods", 10, 1, 200, 1 ); momentum = Param( "Momentum", 5, 1, 200, 1 ); Plot( RMI(periods, momentum) , _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style",styleThick) ); _SECTION_END(); _SECTION_BEGIN("RSI"); SetChartOptions(0,0,chartGrid30|chartGrid70); periods = Param( "Periods", 10, 1, 200, 1 ); Plot( RSI( periods), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style",styleThick) ); _SECTION_END(); Plot(70,"",colorDarkRed,style=32); Plot(30,"",colorDarkRed,style=32);