Coding volume with regression data

jrowe

New member
Very new to this coding thing :). I have the start of a code I'm writing and for the life of me cant get this to work. Been running some correlations and linear regression test on all the data I've tracked and am trying to test some theories.

Any help would be greatly appreciated. I'm trying to code in where I could multiply the volume I'm getting for a time period by different numbers I'm getting from my regression data.

Code:
def startCounter = SecondsFromTime(startTime);
def endCounter = SecondsTillTime(endTime);
plot targetPeriod = if startCounter >= 0 and endCounter >= 0 then 1 else 0;
rec volumeTotal = if targetPeriod and !targetPeriod[1] then volume else if targetPeriod then volumeTotal[1] + volume else volumeTotal[1];

AddLabel(yes, Concat("Target Period Volume: ", volumeTotal), Color.GRAY);
 
Last edited by a moderator:
Is that the extent of your code...??? You haven't defined startTime or endTime, for starters...

Edited to add: The use of Concat() in Thinkscript is somewhat superfluous in my experience... Concat("Target Period Volume: ", volumeTotal) can be replaced with "Target Period Volume: " + volumeTotal and the result will be the same... Compared to other languages I haven't found the benefit...
 
Last edited:
Is that the extent of your code...??? You haven't defined startTime or endTime, for starters...

Edited to add: The use of Concat() in Thinkscript is somewhat superfluous in my experience... Concat("Target Period Volume: ", volumeTotal) can be replaced with "Target Period Volume: " + volumeTotal and the result will be the same... Compared to other languages I haven't found the benefit...
Good to know! It is for now, I change the time periods. Ive just been trying to figure out how to get it to where i can multiply the volumetotal for whatever timeframe by whatever numbers i come up with from tracking data. I just cant seem to get it, and figured i'd ask.
 
Working with periods of time is one of the trickiest concepts to nail down in TOS, along with a few complex and seldom used functions... Refer to a few other Studies for examples of how others have done things... I also use the Thinkscript Collection by Jim Shingler, based off work started by StanL... A resource well worth bookmarking...
 

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