Registered User Joined: 5/10/2006 Posts: 7
|
i read swop and scoops worden report yesterday and used his PCF for 3 day....it is not working. maybe I am not using the right value or list. can you provide PCF for the 3 day MA crossing the 7 day for the day I run the scan
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try one or more of the following:
SMA3 xUp SMA7:
AVGC3 > AVGC7 AND AVGC3.1 <= AVGC7.1
SMA3 xDn SMA7:
AVGC3 < AVGC7 AND AVGC3.1 >= AVGC7.1
SMA3 crossing SMA7 (either direction):
SGN(AVGC3 - AVGC7) <> SGN(AVGC3.1 - AVGC7.1)
EMA3 xUp EMA7:
XAVGC3 > XAVGC7 AND XAVGC3.1 <= XAVGC7.1
EMA3 xDn EMA7:
XAVGC3 < XAVGC7 AND XAVGC3.1 >= XAVGC7.1
EMA3 crossing EMA7 (either direction):
SGN(XAVGC3 - XAVGC7) <> SGN(XAVGC3.1 - XAVGC7.1)
You may wish to review the following:
Things to check if your moving averages don't "seem right" or "seem to match"
Moving Average PCF Templates
How to create a Personal Criteria Forumula (PCF)
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|