Registered User Joined: 1/8/2005 Posts: 118
|
I need a sortable column to find stocks with higher volume in the last 5 or 10 minutes of trading. Thank you.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
If you set the Time Frame of the following Condition Formula to 1-Minute, it would give you the percent that the volume of the current bar is currently above or below the 100 Period Simple Moving Average of Volume ending 1-bar ago:
100 * (V / AVGV100.1 - 1)
The following formula would compare the 5 most recent bars to the 100-bars ending 5-bars ago instead:
100 * (V / AVGV100.5 - 1)
You could use a 5-minute Time Frame with either formula if you want to check over a longer period of time.
Adding & Editing WatchList Columns
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|