Author: arena74
This is a breakout screener. I didn’t find another way to spot breakouts but it seems as if this one is working quite well. It finds stocks which crossed above 7 days high (you cand change this number if you like) with a volume higher than average. Sorted by stockhastic. Enjoy!
c1 = (close > Dhigh(7))
indicator1 = Average[20](Volume)
c2 = (indicator1 >= 450000.0)
c3 = (volume > indicator1)
indicator2 = Stochastic[14,4](close)
c4 = (indicator2 > indicator2[1])
SCREENER[c1 AND c2 AND c3 AND c4] (indicator1 AS"MA")