Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 6/18/2011 Posts: 2
|
Want to scan stocks with following criteria1. Week close between 10 to 1002. Daily average volume is greater than 200k3. Current week close is higher or lower than previous week 4. weekly 20 moving average is rising or declining5. weekly range is greater than 2 dollars
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
In TC2000 version 12, you will just set the Time Frame of the following Criteria Formula to Weekly:
10 <= C AND C <= 100 AND AVGV2 >= 1000000 AND C <> C1 AND AVGC20 <> AVGC20.1 AND H > L + 2
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 9/22/2005 Posts: 849
|
Bruce
Should not C<=10 AND C <=100
be
C >=10 AND C<=100
In order for the close be between 10 and 100?
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I didn't put C <= 10, I put 10 <= C, which is the same as C >= 10. Both C >= 10 and 10 <= C will work identically. The reason I generally prefer to use:
10 <= C AND C <= 100
Instead of:
10 >= 10 AND C <= 10
Is that it displays the visual relationship of C being between 10 and 100.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |