Hi,
I would like to have a screener for the following.
I want to see all stocks that:
– Price >2
– Volume > 100,000 (daily)
– Price is above EMA50, EMA20, and EMA10 (daily)
– The volume of the first 2 minutes candle after the opening of the stock market in the USA (1530-1532) must be at least 4 times higher than the average volume of the first 2 minutes candles (1530-1532) of the last 20 days.
Thanks
Gr Marco
JSParticipant
Senior
Hi,
Try this one:
TimeFrame(1 Day)
EMA10=Average[10,1](Close)
EMA20=Average[20,1](Close)
EMA50=Average[50,1](Close)
c1=Close>2
c2=Volume>100000
c3=(Close>EMA10 and Close>EMA20 and Close>EMA50)
TimeFrame(2 minutes)
If OpenTime=153000 then
myVolume=Volume
Avg20Vol=Average[20](myVolume)
EndIf
c4=Volume>4*Avg20Vol
Screener[c1 and c2 and c3 and c4](Volume as "Volume")
Hi,
Thanks,
Unfortunately it does not seem to work.
Take for example stock: CFLT
On the 10th of octobre the volume on the first 2 minute candle at opening market (1530) is 83000. This is even less then the average on the same candle the last 20 days.
gr Marco
JSParticipant
Senior
Hi,
When I run the screener, CFLT (Confluent) doesn’t appear in the results…
I think something else might be going on… (Are you checking the Volume on the 2-minute timeframe?)
Hi,
See attachment how set up is. I get more then 1000 results.
gr Marco
JSParticipant
Senior
Hi,
That’s correct, this is the right setup…
Is “(CFLT) Confluent” also being selected with this setup?
(The large number of results is also due to the number of lists you’ve selected — we’re talking about thousands of stocks here…)
Yes it is. See attachment
JSParticipant
Senior
I’m seeing completely different volumes — are you using IG or IB?
What do you mean with IG or IB?
JSParticipant
Senior
Is your broker IG or IB? Are you using the PRT+IG or PRT+IB setup?
And which version of PRT are you using — Complete, Premium, or End-of-Day?
I use interactive brokers and have a premium account
JSParticipant
Senior
I don’t have a real-time subscription for U.S. stocks, so unfortunately I can’t check it…