Hello guys,
I only want to screen stocks with an average trading volume over $10 millions per day. I chose 10 days for the average. But I have a problem with it.
Can somebody please tell me how to check the average traded volume of the last 10 days? If I use an EOD screener, I would use this syntax:
MinimumTradedCapital = 10000000
MinimumVolume = average[10](volume*close)>MinimumTradedCapital
SCREENER [MinimumVolume]
But how can I do that when using an intraday screener? If I use this version above the calculation is made over the last 10 intraday periods and not the last 10 days.
Thanks for any help!
I just read some other postings and I think I found the answer. Let’s say I want to scan for an inside bar on the 15-minute timeframe. But I still want only to see stocks with a minimum traded volume of $10 millions per day on average, would this be correct then?
timeframe(daily)
MinimumTradedCapital = 10000000
MinimumVolume = average[10](volume*close)>MinimumTradedCapital
timeframe(default)
insidebar = high[1]<high[2] and low[1]>low[2]
SCREENER [MinimumVolume and insidebar]