TimeFrame(Daily)
EMA10=ExponentialAverage[10](close)
EMA20=ExponentialAverage[20](close)
EMA50=ExponentialAverage[50](close)
ATR10=AverageTrueRange[10](close)
C1=Summation[30](Close>EMA10)=30
C2=Summation[30](Close>EMA20)=30
C3=Summation[30](Close>EMA50)=30
C4=(Close-Close[60])/Close>0.3
C5=Close>Highest[10](High)
C6=Average[30](Volume)>200000
C7=Close>10
C8=Summation[10](ATR10<ATR10[1])=10
BreakOut= C1 and C2 and C3 and C4 and C5 and C6 and C7 and C8
Screener[BreakOut](BreakOut as "BreakOut")