Registered User Joined: 10/7/2004 Posts: 5
|
I would like to make an easy scan using the following criteria (as per Worden Report 8/30/05): Price>200 day moving average Price>50 day moving average Price>20 day moving average Price<(50 day moving aveage x 1.02) Price<(Price of 60 days ago x 1.20)
Can you help?
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I would create the following Personal Criteria Formulas (you will probably only need either SMAs or the EMAs, not both):
Price vs SMA200: 100*C/AVGC200
Price vs EMA200: 100*C/XAVGC200
Price vs SMA50: 100*C/AVGC50
Price vs EMA50: 100*C/XAVGC50
Price vs SMA20: 100*C/AVGC20
Price vs EMA20: 100*C/XAVGC20
Price vs 60 Days Ago: 100*C/C60
Then I would create an EasyScan (you could substitute Volume 5-Day for Volume 90-Day):
EasyScan Conditions: -Price vs MA200: Value: 100.01 to Max -Price vs MA50: Value: 100.01 to 101.99 -Price vs MA20: Value: 100.01 to Max -Price vs 60 Days Ago: Value: Min to 119.99
You may want to watch the following videos:
How to create a Personal Criteria Forumula (PCF) Using EasyScan to find stocks that meet your own criteria Constructing more versatile and reusable Personal Criteria Formulas
You could also create a single Boolean Personal Criteria Formula:
C>AVGC200 AND C>AVGC50 AND C>AVGC20 AND C<AVGC50*1.02 AND C<C60*1.2
-Bruce Personal Criteria Formulas TC2000 Support Articles
|