Registered User Joined: 6/28/2005 Posts: 9
|
How do I create a scan for stocks that has gone up for 3 consecutive days after the 10-day mov. avg. crossed above a 40-day mov. avg. 3 days ago.?
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try one of the following:
Simple:
C > C1 AND C1 > C2 AND C2 > C3 AND AVGC10.3 > AVGC40.3 AND AVGC10.4 <= AVGC40.4
Exponential:
C > C1 AND C1 > C2 AND C2 > C3 AND XAVGC10.3 > XAVGC40.3 AND XAVGC10.4 <= XAVGC40.4
You may wish to review the following:
How to create a Personal Criteria Forumula (PCF) Things to check if your moving averages don't "seem right" or "seem to match" Moving Average PCF Templates Handy PCF example formulas to help you learn the syntax of PCFs! PCF Formula Descriptions
-Bruce Personal Criteria Formulas TC2000 Support Articles
|