Registered User Joined: 6/15/2015 Posts: 49
|
Hello,
How do I run a scan that shows me stocks which are trading 0-25% below their 52 week highs. Conversely, what about stocks which are 0-25% above their 52 week lows?
Thank you.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
A daily condition formula for price being within 25% of the value of the 52 week high would be:
C >= .75 * MAXH252
A daily condition formula for price being within 25% of the value of the 52 week low would be:
C <= 1.25 * MINL252
If you are interested in where price is relative to the range over the period however, you could use stochastics. Being in the top 25% of the range would be:
STOC252 >= 75
And being in the bottom 25% of the range would be:
STOC252 <= 25
-Bruce Personal Criteria Formulas TC2000 Support Articles
|