MaryParticipant
Average
Hello,
How would I screen for stocks with 300K (300,000.00) overall, general volume or bigger? How do you define that condition for Screener?
Thank you in advance.
You can use the volume for the current bar, for an average of the last N bars or the sum of the last N bars:
nyVol = volume //volume of the current bar
myVol = average[10,0](Volume) //SM Average volume of the last 10 bars
myVol = summation[10](Volume) //total volume of the last 10 bars
MaryParticipant
Average
So then to make screener to find stocks with at least 300K volume
if I write
myVol = volume
c1 = myVol > = 300,000
Screener [c1]
Is this screener correct?
Yes, but write 300000, without any non-numeric character embedded within its digits.