Gold Customer
Joined: 12/1/2004 Posts: 2
|
I am trying to identify when the 10 day ma crosses the 20 day. (avgc10/avgc20)*100, (Avgc10.4/avgc20.4)*100. I have tried using the range selector but can't get the right results.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Welcome to the forums. A very good foundation for learning how to use TeleChart can be gained by reviewing the following:
If you are new to TeleChart READ THIS FIRST!
Please try using one of the following Personal Criteria Formulas as an EasyScan Condition:
SMA10 xUp SMA20:
AVGC10 > AVGC20 AND AVGC10.1 <= AVGC20.1
SMA10 xDn SMA20:
AVGC10 < AVGC20 AND AVGC10.1 >= AVGC20.1
SMA10 crossing SMA20 (either direction):
SGN(AVGC10 - AVGC20) <> SGN(AVGC10.1 - AVGC20.1)
EMA10 xUp EMA20:
XAVGC10 > XAVGC20 AND XAVGC10.1 <= XAVGC20.1
EMA10 xDn EMA20:
XAVGC10 < XAVGC20 AND XAVGC10.1 >= XAVGC20.1
EMA10 crossing EMA20 (either direction):
SGN(XAVGC10 - XAVGC20) <> SGN(XAVGC10.1 - XAVGC20.1)
You may wish to review the following:
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
-Bruce Personal Criteria Formulas TC2000 Support Articles
|