Hi,
I would like to see all the stocks that meet the following criteria on daily timeframe:
- Stockprice is above 5
- Daily average volume last 30 days is 2 million
- Volume on last trading day was less then 25% of the 30 day average
- Stock has increased with more then 30% in price last 90 days
Thanks
gr Marco
JSParticipant
Veteran
Hi Marco,
Hereby the requested screener…
C1=Close>5
C2=Average[30](Volume)>2000000
C3=Volume<0.25*Average[30](Volume)
C4=Close>1.3*Close[90]
Screener[C1 and C2 and C3 and C4](Volume as "Volume")