Registered User Joined: 12/21/2004 Posts: 11
|
I need to search Telecharts for stocks using a 2 day simple moving average crossing a 50 day exponential moving average on a daily chart. I would like to use this formula to search for stocks that are valued at $35.00 to $100.00 and have a daily average of 100,000 in volumn. and are optionable.
Thanks
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please use one of the following Personal Criteria Formulas as an EasyScan Condition along with the built in Optionable Stocks Fundamental System Criteria (I've used a 90-Period Simple Moving Average of Volume for Average Daily Volume).
SMA2 xUp EMA50:
AVGC2 > XAVGC50 AND AVGC2.1 <= XAVGC50.1 AND 35 <= C AND C <= 100 AND AVGV90 >= 1000
SMA2 xDn EMA50:
AVGC2 < XAVGC50 AND AVGC2.1 >= XAVGC50.1 AND 35 <= C AND C <= 100 AND AVGV90 >= 1000
SMA2 crossing EMA50 (either direction):
SGN(AVGC2 - XAVGC50) <> SGN(AVGC2.1 - XAVGC50.1) AND 35 <= C AND C <= 100 AND AVGV90 >= 1000
How to create a Personal Criteria Forumula (PCF)
Using EasyScan to find stocks that meet your own criteria
Definitions of all built in scanning and sorting 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
|