Gold Customer
Joined: 8/15/2005 Posts: 71
|
How would I write a pcf for obv moving up through it''s 15 day moving average?
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
If the Moving Average is Simple:
OBV > OBV15 AND OBV1.1 <= OBV15.1
If the Moving Average is Exponential:
OBV > XAVG(OBV,15) AND OBV1.1 <= XAVG(OBV1.1,15)
You may wish to review the following:
How to create a Personal Criteria Forumula (PCF)
Dealing with OBV & MS in PCF's - how to interp their "values"
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|