Registered User Joined: 5/31/2006 Posts: 47
|
Hello
Can a PCF be written that shows if todays low is within .5% of yesterdays low? Also, if todays high is within .5% of yesterdays high? Thanks.
Mark
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
QUOTE (markd85) Can a PCF be written that shows if todays low is within .5% of yesterdays low?
Please try the following Personal Criteria Formula:
ABS(L / L1 - 1) <= .005
QUOTE (markd85) Also, if todays high is within .5% of yesterdays high?
Please try the following Personal Criteria Formula:
ABS(H / H1 - 1) <= .005
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
|
Registered User Joined: 5/31/2006 Posts: 47
|
Thank you very much.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|