Hi,
Can you help me with following.
I would like to see all the stocks that fit the following criteria.
- The price of the stock is above the EMA 20 week
- The price of the stock is at least 25% lower than the 52 week high
- The percentage gain of the stock over the last 3years is more then 400%
Thanks
gr Marco
It could be something like this:
//-------------------------
//The price of the stock is above the EMA 20 week
ema20=average[20,1](close)
c1 = close > ema20
//-------------------------
//The price of the stock is at least 25% lower than the 52 week high
lmax=highest[52](high)
dist=25
c2 = close < (100-dist)/100*lmax
//-------------------------
//The percentage gain of the stock over the last 3years is more then 400%
gain=(close/close[3*52]-1)*100
c3 = gain > 400
//-------------------------
setup = c1 and c2 and c3
screener[setup]