Registered User Joined: 6/24/2008 Posts: 17
|
i'm new to this, could someone get me started and tell me how to write this in easy scan? 200 day moving average crossing closing price.
thx, john
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try including one of the following Personal Criteria Formulas as an EasyScan Condition:
Price xUp SMA200:
C > AVGC200 AND C1 <= AVGC200.1
Price xDn SMA200:
C < AVGC200 AND C1 >= AVGC200.1
Price crossing SMA200 (either direction):
SGN(C - AVGC200) <> SGN(C1 - AVGC200.1)
Price xUp EMA200:
C > XAVGC200 AND C1 <= XAVGC200.1
Price xDn EMA200:
C < XAVGC200 AND C1 >= XAVGC200.1
Price crossing EMA200 (either direction):
SGN(C - XAVGC200) <> SGN(C1 - XAVGC200.1)
How to create a Personal Criteria Forumula (PCF)
Using EasyScan to find stocks that meet your own criteria
Moving Average PCF Templates
Things to check if your moving averages don't "seem right" or "seem to match"
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|