Volume Strength Finder For ThinkOrSwim

Katsu

Member
VIP
Author states,
Generally, Volume indicator shows total Volume of a candle. In this Volume Strength Finder Indicator, I tried to separate Strength of buyers and sellers based on the candle stick pattern. Calculating Buyer and Seller Strength each and every candle of the day based on the pattern formation.

High - close => Buyers
Close - low => Sellers

in this way, cumulative volume separates for buyer and sellers and comparing with total volume of the day and showing results.

idDAYrm.png


Here is the original Tradingview code:
https://www.tradingview.com/script/yYa3hro5-Volume-Strength-Finder/


For the new ThinkOrSwim code, you must scroll down to the next post
 
Last edited by a moderator:

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

check the below:
CSS:
#// Indicator for TOS
#// © Saravanan_Ragavan
#indicator('Volume Strength Finder', 'VSF', overlay = true)
# Converted by Sam4Cok@Samer800    - 03/2025

input showLabel = yes;
input colorBars = yes;
input startTime = 0930;

def na = Double.NaN;
def last = isNaN(close);
def bar = bar[1] + 1;
def T1 = SecondsFromTime(startTime) == 0;
def z1 = if T1 then bar else z1[1];
def L = Max(bar - Z1 + 1, 1);
def pdw = volume[0] * (close[0] - low[0]) / (high[0] - low[0]);
def ndw = volume[0] * (high[0] - close[0]) / (high[0] - low[0]);
def SSPV1 = fold i = 1 to L with p=pdw do
           p + (GetValue(volume, i) * (GetValue(close, i) - GetValue(low, i)) / (GetValue(high, i) - GetValue(low, i)));
def SSNV1 = fold j = 1 to L with q=ndw do
           q + (GetValue(volume, j) * (GetValue(high, j) - GetValue(close, j)) / (GetValue(high, j) - GetValue(low, j)));

def SSPV = if IsNaN(SSPV1) then 0 else SSPV1;
def SSNV = if IsNaN(SSNV1) then 0 else SSNV1;
def total_v = SSPV1 + SSNV1;
def Pos = SSPV / total_v * 100;
def Neg = SSNV / total_v * 100;
def todVol = if !last then total_v else na;
def BuyVol = if !last then Round(SSPV, 0) else na;
def SellVol = if !last then Round(SSNV, 0) else na;
def BuyPer = if !last then Round(Pos, 0) else na;
def SellPer = if !last then Round(Neg, 0) else na;


AssignPriceColor(if !colorBars then Color.CURRENT else
                 if SSPV > SSNV then Color.CYAN else
                 if SSPV < SSNV then Color.MAGENTA else Color.GRAY);

AddLabel(showLabel, "Today's Vol (" + todVol + ")", Color.WHITE);
AddLabel(showLabel, "Buyers Vol (" + BuyVol + ")", Color.GREEN);
AddLabel(showLabel, "Sellers Vol (" + SellVol + ")", Color.RED);
AddLabel(showLabel, "Buyers Strength (" + BuyPer + "%)", Color.GREEN);
AddLabel(showLabel, "Sellers Strength (" + SellPer + "%)", Color.RED);

#-- END of CODE
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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