Hello,
Can you help me with the following:
I would like to see all the stocks on a daily time frame that meet the following criteria.
-
Close price above 4usd
-
Average daily volume last 30 days above 200000
-
The price of the stock is at least one week above the EMA200 day
-
The pre-opening (pre market) price is at least 5% higher then the close price last trading day
gr Marco
JSParticipant
Senior
Hi,
A warning in advance 😉
EMA200 is an issue with a screener regarding the maximum number of historical bars available.
When there are 256 bars (Complete version) available, it won’t work with an EMA200…
What do you mean by “Average daily Volume”? Which average should be used for the volume? AvgDailyVolume=Average[????](Volume)
JSParticipant
Senior
Try this one:
TimeFrame(Daily)
AvgVol=Average[30](Volume)//Avg.Volume over 30 days
EMA200=Average[200,1](Close)
Cond1=Close>4 //Close is greater than 4 usd
Cond2=Summation[30](AvgVol>200000)=30
Cond3=Summation[5](Close>EMA200)=5
Cond4=Open>=Close[1]*1.05
Test=Cond1 and Cond2 and Cond3 and Cond4
Screener[Test]