Platinum Customer
Joined: 8/8/2007 Posts: 11
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
The at least 250,000 shares traded portion is straightforward (Volume in TeleChart is reported in blocks of 100 shares):
V >= 2500
The "strong volume gainers" part would depend on your particular unambiguous definition of "strong volume gainers". For example just adding that the Volume increased from the previous Bar would be:
V >= 2500 AND V > V1
While having at least twice the Volume of the previous Bar would be:
V >= 2500 AND V >= 2 * V1
And being at least three times the 20-Bar Average Volume would be:
V >= 2500 AND V >= 3 * AVGV20
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
|