Registered User Joined: 10/7/2004 Posts: 35
|
Hi
I need to make a column that shows stocks that are between -1% to 8% of the 50 day simple moving average.
thank you
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following Condition Formula:
.99 * AVGC50 <= C AND C <= 1.08 * AVGC50
A slightly shorter but less intuitive Condition Formula would be:
ABS(C / AVGC50 - 1.035) <= .045
Personal Criteria Formula Conditions
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|