Hello
I thought I would also share my Nick Radge inspired 13 week (1 business Quarter) Break Out screener.
We need to see above average volume; 13week ma greater than 39 week (9 month) ma; lowest low of quarter with a close higher than that low; and, finally ROC (13 week) greater than 30.
I hope you enjoy using and refining!
Timeframe(Weekly)
C2 = close > 2.00
Indicator2 = Volume
Indicator3 =(Average[20](Volume)) * 1.5
C3 = indicator2 > indicator3
Indy4 = exponentialaverage[13](close)
Indy5 = exponentialaverage[39](close)
c4 = (indy4 <= Indy5)
Indy6 = (lowest[13](low[1]))
c5 = (close <= Indy6)
criteria = volume
///Long
Indy6 = exponentialaverage[13](close)
Indy7 = exponentialaverage[39](close)
c4 = (indy6 >= Indy7)
Indy6 = (highest[13](high[1]))
c7 = (close >= Indy6)
criteria = volume
Filter = ROC[13](close) >30
Screener [c2 and c3 and c4 and c5 and filter] (criteria as "volume")
Screener [c2 and c3 and c7 and c7 and Filter] (criteria as "volume")