Volume Pressure in a whole new light for ThinkOrSwim

Thank you for getting back with me. I'm new to this. If I'm using a wrong version, what version do you recommend? If you have something better, that would be great, if you are willing to post it.
 
Thank you for getting back with me. I'm new to this. If I'm using a wrong version, what version do you recommend? If you have something better, that would be great, if you are willing to post it.

Use the code from this post. Here
Read how to use it. Here

I use this indicator to trade stocks in the NASDAQ and I mostly trade QQQ.
 
@dap711 Thanks for this, I"ll start testing this more. I had a very marginal hope, that maybe we could use this on SPX charts, since that Volume can't be used on indexes directly. Since this aggregates based on SPY, QQQ, was hoping it'd be different. But it doesn't work unfortunately. Have you found any other way for getting sorta volume on SPX?
 
@dap711 Thanks for this, I"ll start testing this more. I had a very marginal hope, that maybe we could use this on SPX charts, since that Volume can't be used on indexes directly. Since this aggregates based on SPY, QQQ, was hoping it'd be different. But it doesn't work unfortunately. Have you found any other way for getting sorta volume on SPX?
I've got you covered .. This was posted a month ago, right here in this thread! Click here
 
I've got you covered .. This was posted a month ago, right here in this thread! Click here
I like your buy/sell vol. pressure indicator very much as a lower study and am wondering if there a way to have it not paint the upper price bars in any way. I tried turning off this feature in the settings but then the price bars become grayed out. Thanks much for all your effort.
 
I like your buy/sell vol. pressure indicator very much as a lower study and am wondering if there a way to have it not paint the upper price bars in any way. I tried turning off this feature in the settings but then the price bars become grayed out. Thanks much for all your effort.

Yup ..

Find this code:
C#:
AssignPriceColor(
    if PaintBars and !IsNaN(Dot_Cyan) then Color.CYAN
    else if PaintBars and !IsNaN(Dot_Red) then Color.RED
    else Color.GRAY
);

And replace it with this code:
C#:
AssignPriceColor(
    if PaintBars and !IsNaN(Dot_Cyan) then Color.CYAN
    else if PaintBars and !IsNaN(Dot_Red) then Color.RED
    else Color.CURRENT
);

Cheers!
Dwain
 
Thank you for building this. It is very useful!

Question on how it computes... I noticed when I have a chart of QQQ up, the numbers are different than the built in QQQ... why is that?

VOL PRESSURE.PNG
 
Thank you for building this. It is very useful!

Question on how it computes... I noticed when I have a chart of QQQ up, the numbers are different than the built in QQQ... why is that?

View attachment 27120
Because they are calculated differently. :)

There are several ways to calculate volume pressure. The chart uses the most common way and the others use my way. Neither are the "correct" way and it gives me a way to compare if looking at QQQ or SPY.
 

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
1538 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