Registered User Joined: 3/22/2005 Posts: 88
|
Please help.
I need a PCF for 20 day Rate of Change crossing up on its 12 day exponential moving average
Same for Crossing down.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following condition formula for crossing up in TC2000 v7.
C - C20 > XAVGC12 - XAVGC12.20 AND C1 - C21 <= XAVGC12.1 - XAVGC12.21
And the following condition formula for crossing down.
C - C20 < XAVGC12 - XAVGC12.20 AND C1 - C21 >= XAVGC12.1 - XAVGC12.21
These can be shortened up quite a bit in TC2000 18. Crossing up is the following.
XUP(C - C20, XAVG(C - C20, 12))
And crossing down is the following.
XDOWN(C - C20, XAVG(C - C20, 12))
-Bruce Personal Criteria Formulas TC2000 Support Articles
|