// Downloaded From https://www.WiseStockTrader.com
A = RSI( 14)-Ref( RSI (14),-9)+ MA(RSI(3),3);
Plot1 = MA(A, 13);
Plot2 = MA(A,33);

Plot( A, "The Composite Index", colorRed, styleThick);
Plot( Plot1, "", colorGreen);
Plot( Plot2, "", colorLightBlue);

PlotGrid(0, colorLightGrey);