Platinum Customer
Joined: 2/3/2010 Posts: 6
|
How do I create a simple scan for stocks trading above 1 dollar with a volume greater than 200000 in the old version?
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try using the following Personal Criteria Formula as an EasyScan Condition (Volume in TC2000 version 7 is reported in blocks of 100 shares while Volume in TC2000 version 12 is reported in actual shares):
C > 1 AND V > 2000
How to create a Personal Criteria Forumula (PCF)
Using EasyScan to find stocks that meet your own criteria
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Platinum Customer
Joined: 2/3/2010 Posts: 6
|
ok thanks! one more thing.. can you show me a formula to scan 4 % movers of stocks greater than 1 with volume greater than 200k?
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
If by 4% Movers you mean the Absolute Percent Change from previous Close to current Close is at least 4%:
ABS(C / C1 - 1) >= .04 AND V > 2000
If by 4% Movers you mean the Absolute Percent Change from current Open to current Close is at least 4%:
ABS(C / O - 1) >= .04 AND V > 2000
If by 4% Movers you mean the current High is at least 4% above the current Low:
H >= 1.04 * L AND V > 2000
If by 4% Movers you mean the current True High is at least 4% above the current True Low:
H + C1 + ABS(H - C1) >= 1.04 * (L + C1 - ABS(L - C1)) AND V > 2000
If you mean something else, I will need additional clarification from you as to your particular intent.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|