Registered User Joined: 9/29/2006 Posts: 109
|
I would like to build a scan that would identify the biggest movers in price for a 5 min period for stocks trading between $5 to $20 with daily volume of 1 million shares. And would it be possible to build a scan in reverse also. Any help would be appreciated, thank you Herm
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You can make a Scan for stocks trading between $5 to $20 with daily volume of 1 million shares using the following Daily Condition Formula in TC2000 version 12 (you can set the Time Frame of a formula when creating, editing or using it):
Indicators, Sorting & Scanning
5 <= C AND C <= 20 AND V >= 1000000
You could then Sort by Price Percent Change using the following Indicator Formula set to a Time Frame of 5-Minutes:
100 * (C / C1 - 1)
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|