// Downloaded From https://www.WiseStockTrader.com
p = Param( "Periods", 30, 1, 200, 1 );
Plot( RSI( p ), "RSI 30", colorBlue, ParamStyle("RSI Style", styleThick)  );

Plot(30, "",colorBlack,styleNoLine|styleDots|styleNoTitle|styleNoLabel);
Plot(50, "",colorBlack,styleNoLine|styleDots|styleNoTitle|styleNoLabel);
Plot(70, "",colorBlack,styleNoLine|styleDots|styleNoTitle|styleNoLabel);
Plot(0, "",colorLime,styleNoLine|styleNoTitle|styleNoLabel);
Plot(100, "",colorLime,styleNoLine|styleNoTitle|styleNoLabel);
MyPort = 25000;//Enter Portfolio Value

color = IIf( RSI(14) > RSI(21), ParamColor( "Span A Color", ColorRGB( 0, 255, 0 ) ), ParamColor( "Span B Color", ColorRGB( 255, 104, 32 ) ) );
PlotOHLC ( RSI(14), RSI(14), RSI(21), RSI(21), "Cloud", Color, styleCloud | styleNoLabel, Null, Null, 0, -2 );