Registered User Joined: 6/22/2012 Posts: 13
|
Could you please forward me a formula for following:
( Todays volume is x% greater than yesterday )
I know volume will be V and V1 , greater is >, but can not work out percentage or value
I put x% above as I want to test varying values ie; 100%, 50%, 200% etc.
Thankyou
Jeff
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
A Condition Formula for the current volume bar being 100% greater than the previous volume bar would be:
V >= 2 * V1
A Condition Formula for the current volume bar being 50% greater than the previous volume bar would be:
V >= 1.5 * V1
A Condition Formula for the current volume bar being 200% greater than the previous volume bar would be:
V >= 3 * V1
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|