Trade Count

danjoh

Member
I wouldn't think this hard to find, but I can't find how to find out the number or actual trades that make up the volume for a given period? You may have good volume, but if there is a relatively small number of trades it would indicate institutional buying and you could get fooled on liquidly. HELP!
 
Solution
perhaps something in this, though it is do do with renko charts
https://usethinkscript.com/threads/renko-wave-volume.10005/#post-89852
might be of interest.

You can divide volume by tick_count
https://tlc.thinkorswim.com/center/...ts/FundamentalType/FundamentalType-TICK-COUNT
to perhaps see a pattern in the volume per trade taking place. If the volume per trade is high, it may be larger traders moving in or out. If the volume per trade is low or constant, it may be non-institutional traders. But those are certainly only guesses.

-mashume
perhaps something in this, though it is do do with renko charts
https://usethinkscript.com/threads/renko-wave-volume.10005/#post-89852
might be of interest.

You can divide volume by tick_count
https://tlc.thinkorswim.com/center/...ts/FundamentalType/FundamentalType-TICK-COUNT
to perhaps see a pattern in the volume per trade taking place. If the volume per trade is high, it may be larger traders moving in or out. If the volume per trade is low or constant, it may be non-institutional traders. But those are certainly only guesses.

-mashume
 
Solution

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

perhaps something in this, though it is do do with renko charts
https://usethinkscript.com/threads/renko-wave-volume.10005/#post-89852
might be of interest.

You can divide volume by tick_count
https://tlc.thinkorswim.com/center/...ts/FundamentalType/FundamentalType-TICK-COUNT
to perhaps see a pattern in the volume per trade taking place. If the volume per trade is high, it may be larger traders moving in or out. If the volume per trade is low or constant, it may be non-institutional traders. But those are certainly only guesses.

-mashume
Thank you so much! I will check it out and let you know if it works.
Thanks @mashume I like what I see, can you extrapulate a bit on how you visualize and interpet the lower study.
 
Last edited by a moderator:
I threw this together back a while:
Code:
declare lower;

input length = 12;

def V = volume;
def T = Tick_count;

def tvb = (close - low) + (close - open) - (high - close);

def sign = if HL2 + tvb > HL2 then 1 else -1;

plot VolumePerTick = sign * V / T;
VolumePerTick.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
VolumePerTick.AssignValueColor(if VolumePerTick > 0 then Color.DARK_GREEN else Color.DARK_RED);

plot MovingVPT = MovAvgExponential(VolumePerTick, length = length);
AddCloud(MovingVPT * 3.14,  0,  Color.GREEN,  Color.RED);

plot zero = 0;

it provides some interesting notion of movements as it tries to use the true value of a bar to determine the direction of most of the trades.


a much simplified version that looks at just v/t and a moving average works like this:
Code:
declare lower;
input length = 12;

def V = volume;
def T = Tick_count;

plot VolumePerTick = V / T;

plot MovingVPT = MovAvgExponential(VolumePerTick, length = length);

No screen shots today, just some code.

-mashume
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
559 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top