Volume Based Chart on TOS

Hello all. I'm new here and just had a quick question in regards to volume based candles. I'm interested in attempting to write some code for volume based candles rather than time or tick based candles. The objective more or less is to have candles that don't print until they hit a fixed value of say 50,000 and then a candle prints. I know Tradovate and Ninja Trader have this feature built in, but I prefer using TOS and if I could find a wait to get that to work that'd be great. I'm trying to use this to chart Supply and Demand zones in futures and feel that volume based candles will cut out some extra noise that using time based candles can't. So now for the question. Is these possible in TOS? I have limited coding knowledge in Think or Swim and really don't want to be chasing my own tail if this isn't do able. Any feedback or tips are greatly appreciated.
 

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

Is there any such thing as a volume based chart on TOS? I use it on Tradestation, but most of my tool are on TOS and would love to have it if there's a way to create it. I'm also curious about Volume Dots. Found this on TOS, but can't seem to access it.....may not exist anymore: https://tlc.thinkorswim.com/center/howToTos/thinkManual/Bookmap/Heatmap/Volume-dots . Anyone ever see that?

ive never seen this before, possibly a beta testing feature of TOS, if you inquire to know more you can call TD Ameritrade and inquire about it. Be sure to post back and let us know what they said.
 
@bmann777


Paint / Draw / Chart a minimum of XYZ volume only
Code:
# Paint / Draw / Chart a minimum of XYZ volume only
# By XeoNoX Via usethinkscript.com
declare lower;
input volume_amount = 200000;
def defined_volume = if volume>volume_amount then volume else 0;
plot scan =defined_volume;
scan.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
scan.SetLineWeight(3);
 
The volume dots link you shared is a description of the aggressor volume market buy order bubbles on bookmap. Its on tos site because they offer a stripped version of bookmap to tos users for 50$ a month. Bookmap is a stand alone orderflow platform. showing real time order flow represented by a heat map and "bubbles" or "volume dots". the dots like i said are the market buy orders coming direct to market and the heatmap is the historical and realtime limit order book.
 
ive never seen this before, possibly a beta testing feature of TOS, if you inquire to know more you can call TD Ameritrade and inquire about it. Be sure to post back and let us know what they said.
I contacted TOS through their chat feature, and asked them to turn it on. Just had to shutdown TOS and restart. Go to the "Chart" tab, Bookmap is the 4th tab over. AAPL, MSFT and /ES are free to use. Other symbols cost $40-$50 per month to access.
 
I contacted TOS through their chat feature, and asked them to turn it on. Just had to shutdown TOS and restart. Go to the "Chart" tab, Bookmap is the 4th tab over. AAPL, MSFT and /ES are free to use. Other symbols cost $40-$50 per month to access.
yes. i trade on the Bookmap standalone platform. I also have the TOS version as back up.
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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