[type is stock]
and [country is US]
and [daily sma(50,daily close) > 1 days ago daily sma(50,daily close) ]
and [ Daily Close > Daily Open ]
and [Daily Low > Daily EMA(21,Daily Close)]
and [1 days ago Daily Low < 1 days ago Daily EMA(21,Daily Close)] and [2 days ago Daily Low > 2 days ago Daily EMA(21,Daily Close)]
and [3 days ago Daily Low > 3 days ago Daily EMA(21,Daily Close)]
and [4 days ago Daily Low > 4 days ago Daily EMA(21,Daily Close)]
and [5 days ago Daily Low > 5 days ago Daily EMA(21,Daily Close)]
and [6 days ago Daily Low > 6 days ago Daily EMA(21,Daily Close)]
and [7 days ago Daily Low > 7 days ago Daily EMA(21,Daily Close)]
and [8 days ago Daily Low > 8 days ago Daily EMA(21,Daily Close)]
and [9 days ago Daily Low > 9 days ago Daily EMA(21,Daily Close)]
and [Daily EMA(21,Daily Close) > Daily SMA(50,Daily Close)]
and [1 days ago Daily EMA(21,Daily Close) > 1 days ago Daily SMA(50,Daily Close) ]
and [2 days ago Daily EMA(21,Daily Close) > 2 days ago Daily SMA(50,Daily Close) ]
and [3 days ago Daily EMA(21,Daily Close) > 3 days ago Daily SMA(50,Daily Close) ]
and [4 days ago Daily EMA(21,Daily Close) > 4 days ago Daily SMA(50,Daily Close) ]
// Quality Filters – Added to cut down unnecessary results
and [exchange != PINK]
and [group is not ETF]
and [Close > 5]
and [Daily SMA(200,Daily Volume) > 400000]
JSParticipant
Veteran
Hi @yeoreum
I see you’re new here but for next time:
Introduce yourself and make clear what you want (here is a conversion), mention the source and clarify this with any screenshots…
Everyone wants to help you here but there are a few rules on the forum…
When using this screener, you have to be patient before the results become visible… 😉
xSMA50 = Average[50](Close)
xEMA21 = ExponentialAverage[21](Close)
xLow = Low
C1 = xSMA50 > xSMA50[1] and Close > Open and xLow > xEMA21 and xLow[1] < xEMA21[1] and xLow[2] > xEMA21[2] and xLow[3] > xEMA21[3] and xLow[4] > xEMA21[4] and xLow[5] > xEMA21[5] and xLow[6] > xEMA21[6] and xLow[7] > xEMA21[7] and xLow[8] > xEMA21[8] and xLow[9] > xEMA21[9] and xEMA21 > xSMA50 and xEMA21[1] > xSMA50[1] and xEMA21[2] > xSMA50[2] and xEMA21[3] > xSMA50[3] and xEMA21[4] > xSMA50[4]
// Quality Filters - Added to cut down unnecessary results
C2 = Close > 5
C3 = Average[200](Volume) > 400000
Screener[C1 and C2 and C3](Average[200](Volume) as "Volume")
JSParticipant
Veteran
Hi Roberto,
Can you move this topic to “ProScreener support”…?
Hi JS and thank you very much for your support. Im sorry for the posting without any word or intrcoducing.
The reason is i thought there is some kind of code converter on the website. But its inquiry on the message board
Thanks again