// Downloaded From https://www.WiseStockTrader.com Period = Param("Period", 10, 2, 30, 1); myRSI = RSI(Period); Adev = StDev(myRSI, 3*Period); Hiline = 50 + 1.8*Adev; Loline = 50 - 1.8*Adev; Plot(myRSI,"",colorBlue,8); Plot(Hiline,"",colorRed,1); Plot(Loline,"",colorGreen,1); Title = " " +Name() + " Dynamic RSI Threshold, t = " + WriteVal(period, format=1.0) + " ";