Registered User Joined: 4/26/2018 Posts: 84
|
hi bruce,
how do i write a pcf for a stock that 9EMA is crossing down 20 EMA and the distance between 20 EMA to 50 EMA is 50 cents
the 20 ema is above the 50.
thanks
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I am assuming the distance must be at least $0.50?
XDOWN(XAVGC9, XAVGC20) AND XAVGC20 >= XAVGC50 + .5
If it must be within $0.50:
XDOWN(XAVGC9, XAVGC20) AND XAVGC50 < XAVGC20 AND XAVGC20 <= XAVGC50 + .5
-Bruce Personal Criteria Formulas TC2000 Support Articles
|