// Downloaded From https://www.WiseStockTrader.com //RSI RIBBON // Drag-and-drop the code on to your price chart _SECTION_BEGIN("RSI Ribbon"); Plot( 3, /* defines the height of the ribbon in percent of pane width */"", IIf(RSI()<70 AND RSI()>30,colorYellow,IIf(RSI()<30,colorRed,colorGreen)),styleOwnScale|styleArea|styleNoLabel,-0.5,100 ); _SECTION_END(); //xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx