New Members: Be sure to confirm your email address by clicking on the link that was sent to your email inbox. You will not be able to post messages until you click that link.
How to make a scan/alert to pull all stocks over 50% of ATR
How would I make a scan to show me all US stocks trading a certain % above or below the ATR?
Will I be able to do it by %, say ATR is $5.00 and i want to see all names trading positive and negative $7.50, I would like to have one that shows all names above 50% ATR and one for 100%
0
Answers
For stocks trading in a range wider than 100% of ATR:
and [range > ATR(14)] // or whatever parameter you want.
For wider than 50% of ATR
and [range > ATR(14) * .5]
I'm not sure that's what you really want. If not, ask again.
Thank you so much for the reply, your answer should shorten my learning curve by a huge magnitude.