Registered User Joined: 5/5/2008 Posts: 15
|
How do I track the stocks with huge volatiltiy swings like stocks that have a range of couple of dollars up and down and/ or percentage wise
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
One idea would just be to check the Range. For example, the 5-Period Simple Moving Average of Range would be:
AVGH5 - AVGL5
If you wanted that to be at least $2, you could write:
AVGH5 - AVGL5 >= 2
If you wanted that Range expressed as a Percentage of the Average Closing Price over the same Period you could write:
100 * (AVGH5 - AVGL5) / AVGC5
If you wanted that to be at least 2% you could write:
100 * (AVGH5 - AVGL5) / AVGC5 >= 2
You may wish to review the following:
How to create a Personal Criteria Forumula (PCF)
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|