Gold Customer
Joined: 3/13/2015 Posts: 14
|
How to find stocks that are having gradual increase in volume since last 10 days? Is there any PCF for this filter stocks that meet this criteria?
Thanks,
Pradeep
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Chacking for volume to be increasing for each of the most recent 10 bars could be written as follows (set the time frame to Daily in order for this to be trading days).
TrueInRow(V1 < V, 10) = 10
If you want to exclude the current bar, the formula would be the following.
TrueInRow(V2 < V1, 10) = 10
Now checking for this increase to be gradual kind of depends on what you mean. The following would check for increasing volume, but with that volume increase being less than or equar to 20% on each bar.
TrueInRow((V1 < V AND V <= 1.2 * V1, 10) = 10
Excluding the current bar would produce the following.
TrueInRow(V2 < V1 AND V1 <= 1.2 * V2, 10) = 10
You can adjust the 1.2 to adjust the percentage you want to use for gradual.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Gold Customer
Joined: 3/13/2015 Posts: 14
|
Thanks Bruce!
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|