// Downloaded From https://www.WiseStockTrader.com
CumRSI=RSI(2)+Ref(RSI(2),-1);
Plot(RSI(2),"RSI(2)",colorBlue,styleLine);
Plot(95,"",colorRed,styleLine|styleThick|styleDashed);
Plot(5,"",colorGreen,styleLine|styleThick|styleDashed);

Filter=CumRSI<=10 AND MA(V,60)>=250000;
AddColumn(RSI(2),"RSI(2)");
AddColumn(V,"Volume");