Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

How to find stocks that are having gradual increase in volume since last 10 days? Rate this Topic:
Previous Topic · Next Topic Watch this topic · Print this topic ·
PradeepS
Posted : Wednesday, December 19, 2018 10:24:21 PM
Gold Customer 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

Bruce_L
Posted : Thursday, December 20, 2018 8:56:23 AM


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
PradeepS
Posted : Thursday, December 20, 2018 12:29:21 PM
Gold Customer Gold Customer

Joined: 3/13/2015
Posts: 14

Thanks Bruce!

Bruce_L
Posted : Thursday, December 20, 2018 12:42:41 PM


Worden Trainer

Joined: 10/7/2004
Posts: 65,138

You're welcome.



-Bruce
Personal Criteria Formulas
TC2000 Support Articles
Users browsing this topic
Guest-1

Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.