specific volume at a given time in the day

im trying to figure out if there is a way to know what total volume traded at a particular time say 1pm, 10million on stock xyz.... where you can hover your mouse over and it tells the complete and total volume at that given time, not the candle volume on the subgraph, i have volume indicators for premarket, post market and total volume at whatever time it is currently. That is not what im looking for, im looking to be able to see what volume was at a previous time in the day, any help would be greatly appreciated, i have searched here but so far no luck , or maybe im searching in the wrong place, thanks again
 
Solution
is there a way to make it not show the line and if i move it into volume subgraph, all my volume bars that are green and red disappear, i just want the volume part not the plotted part, i tried deleting show study and no luck, any help very much appreciated thanks again

This should help

Capture.jpg
Ruby:
def   v           = if GetDay() != GetDay()[1] then volume else v[1] + volume;
plot  totalvolume = v;
totalvolume.setdefaultColor(color.cyan);
totalvolume.setpaintingStrategy(paintingStrategy.VALUES_BELOW);
im trying to figure out if there is a way to know what total volume traded at a particular time say 1pm, 10million on stock xyz.... where you can hover your mouse over and it tells the complete and total volume at that given time, not the candle volume on the subgraph, i have volume indicators for premarket, post market and total volume at whatever time it is currently. That is not what im looking for, im looking to be able to see what volume was at a previous time in the day, any help would be greatly appreciated, i have searched here but so far no luck , or maybe im searching in the wrong place, thanks again

Add the following code and when you hover over it will show the totalvolume to that point on the current day.

In the picture below, the mouse hovered over the first bar of the day at 245 and the totalvolume shows 245.

Capture.jpg
Ruby:
def   v           = if GetDay() != GetDay()[1] then volume else v[1] + volume;
plot  totalvolume = v;
totalvolume.setdefaultColor(color.cyan);
 
Add the following code and when you hover over it will show the totalvolume to that point on the current day.

In the picture below, the mouse hovered over the first bar of the day at 245 and the totalvolume shows 245.
is there a way to make it not show the line and if i move it into volume subgraph, all my volume bars that are green and red disappear, i just want the volume part not the plotted part, i tried deleting show study and no luck, any help very much appreciated thanks again
 
is there a way to make it not show the line and if i move it into volume subgraph, all my volume bars that are green and red disappear, i just want the volume part not the plotted part, i tried deleting show study and no luck, any help very much appreciated thanks again

This should help

Capture.jpg
Ruby:
def   v           = if GetDay() != GetDay()[1] then volume else v[1] + volume;
plot  totalvolume = v;
totalvolume.setdefaultColor(color.cyan);
totalvolume.setpaintingStrategy(paintingStrategy.VALUES_BELOW);
 
Solution

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

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
534 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