Registered User Joined: 3/13/2005 Posts: 10
|
I am trying to find a listi of stocks crossing a moving average; lets say a 25 MA. Can you
give me a formula.
Jay
|
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!
To find a list of Stocks crossing a 25-Period Moving Average, you could use one of the following Personal Criteria Formulas as an EasyScan Condition:
Price xUp SMA25:
C > AVGC25 AND C1 <= AVGC25.1
Price xDn SMA25:
C < AVGC25 AND C1 >= AVGC25.1
Price crossing SMA25 (either direction):
SGN(C - AVGC25) <> SGN(C1 - AVGC25.1)
Price xUp EMA25:
C > XAVGC25 AND C1 <= XAVGC25.1
Price xDn EMA25:
C < XAVGC25 AND C1 >= XAVGC25.1
Price crossing EMA25 (either direction):
SGN(C - XAVGC25) <> SGN(C1 - XAVGC25.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
|