calculation sum(volume) ?

Hi, does anyone know what the is code " Sum( volume( period= week ) " is calculating and how to translate it into googlefinance?

i tried sum of total daily volume, but that isn't correct.

thanks.
 
Solution
The correct syntax is: def Data = Sum( volume(period = AggregationPeriod.WEEK));

As @halcyonguy pointed out the default number of bars being summed in the sum() is 12 bars. So the above is attempting to sum the 12 weekly bars.
For several reasons, the above definition will not match other sites.

1. statements that use secondary aggregations are called "MTF" indicators.
MTF indicators are repainting every tick until the week closes.

2. the various apps (ToS, Tradestation, etc...) data feeds have never been able to be made to align with Google. It would seem that this is a known issue. However, there is no total agreement as to why.
Hi, does anyone know what the is code " Sum( volume( period= week ) " is calculating and how to translate it into googlefinance?

i tried sum of total daily volume, but that isn't correct.

thanks.

you don't have a length specified, for how many bars to add up...
the defaut length for sum() is 12, so 12 bars of data.
period = week, means to read data from a different aggregation, a different time. a week.
so add up the volumes over 12 weeks.

https://tlc.thinkorswim.com/center/reference/thinkScript/Functions/Math---Trig/Sum
 

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

you don't have a length specified, for how many bars to add up...
the defaut length for sum() is 12, so 12 bars of data.
period = week, means to read data from a different aggregation, a different time. a week.
so add up the volumes over 12 weeks.

https://tlc.thinkorswim.com/center/reference/thinkScript/Functions/Math---Trig/Sum
Thanks for the response. That's what I thought but it's not what the outcome is. Wondering if I was missing something. The formula doesn't use length in this case, so presuming it's an overall volume of chart?
 
Last edited:
The correct syntax is: def Data = Sum( volume(period = AggregationPeriod.WEEK));

As @halcyonguy pointed out the default number of bars being summed in the sum() is 12 bars. So the above is attempting to sum the 12 weekly bars.
For several reasons, the above definition will not match other sites.

1. statements that use secondary aggregations are called "MTF" indicators.
MTF indicators are repainting every tick until the week closes.

2. the various apps (ToS, Tradestation, etc...) data feeds have never been able to be made to align with Google. It would seem that this is a known issue. However, there is no total agreement as to why.
 
Last edited:
Solution

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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