Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 3/8/2006 Posts: 12
|
I was wondering if I was looking for a specific amount or percentage above or below a ma how would i write Exp 2$ or 10% above 200ma
|
|
Worden Trainer
Joined: 10/1/2004 Posts: 18,819
|
Do you mean the distance from the close to the 200ma?
Is the 200ma exponential?
- Craig Here to Help!
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the one of the following:
Above:
C >= XAVGC200 + 2 OR C >= XAVGC200 * 1.1
Below:
C <= XAVGC200 - 2 OR C <= XAVGC200 * .9
Either:
ABS(C - XAVGC200) >= 2 OR ABS(C - XAVGC200) >= .1 * XAVGC200
You may wish to review the following:
How to create a Personal Criteria Forumula (PCF) Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 3/8/2006 Posts: 12
|
yes
|
|
Registered User Joined: 3/8/2006 Posts: 12
|
either or
|
|
Worden Trainer
Joined: 10/1/2004 Posts: 18,819
|
Bruce's formula should work fine for you, then.
- Craig Here to Help!
|
|
Registered User Joined: 3/8/2006 Posts: 12
|
Thx a bunch. Until next time
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome. Our pleasure.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |