Who can help me with this Screener
JSParticipant
Veteran
Hi,
Maybe you can fill in the missing data?
Relative Volume: over how many days do you want to calculate this?
AvgVolume=Average[?](Close)
RelativeVolume=Volume / AvgVolume (>2)
PerfWeek=(Close-Close[5]) / Close[5] * 100 (>20)
Average[20](Close) > Average[50](Close)
Average[50](Close) > Average[200](Close)
Volume > 300000
Float is not possible.
Close > 1 and Close < 10
Thank you
I want
Relative Volume: 3 months
JSParticipant
Veteran
Hi,
Hereby the screener:
TimeFrame(1 Day)
AvgVolume=Average[60](Close)
C1=Volume/AvgVolume>2
C2=(Close-Close[5])/Close[5]*100>20
C3=Average[20](Close)>Average[50](Close)
C4=Average[50](Close)>Average[200](Close)
C5=Volume>300000
C6=Close>1 and Close<10
Screener[C1 and C2 and C3 and C4 and C5 and C6]