Hi,
I would like to see all the stocks that meet the following criteria:
- The volume of the last daily candle is at least 2 times higher then the average daily volume (30)
- The average daily volume (30) is greater than 200k
- The price of the stock is above 2
Thanks a lot
gr Marco
JSParticipant
Veteran
Hi Marco,
Here’s the screener:
TimeFrame(Daily)
C1=Volume>2*Average[30](Volume)
C2=Average[30](Volume)>200000
C3=Close>2
Screener[C1 and C2 and C3](Volume as "Volume")
Hi Js,
Thanks.
What do i need to add to only see stocks that have risen by at least 5% compared to previous day
gr Marco
JSParticipant
Veteran
Hi Marco,
You can add:
C4=(Close-Close[1])/Close[1]*100>5