Registered User Joined: 2/27/2018 Posts: 14
|
Hello,
Could I have some assitence in creating a PCF for a 8 ema crossing above the 20 ema.
Also if possible pricing doing a pull back to the 13 ema while above the 20 ema.
Thanks,
Jim
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
A condition formula for the 8 ema crossing up through the 20 ema can be written as follows.
XUP(XAVGC8, XAVGC20)
A condition formula for being within 1% and moving down toward the 13 ema while still being above the 20 ema can be written as follows.
GREATEST(XAVGC13, XAVGC20) < C AND C <= 1.01 * XAVGC13 AND C < C1
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 2/27/2018 Posts: 14
|
Thank You Bruce !
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|