Is logic in a Switch statement evaluated if the Case is not true?

ClubEleven

New member
I have an indicator that currently computes the values of a number of items whether or not I have selected them for display (via input variable). I would like to avoid consuming computational resources if I have not selected something for display, and want to know whether use of a Switch statement, with the value of the input variable as a Case, is a valid way of accomplishing this.

Thanks!
 
Solution
As far as I understand, because TOS is built in Java, both Switch and If statements will not execute logic beyond the branch that returns true. Other languages, and specifically other implementations of switch/if can often evaluate the entire expression, but I do not believe that to be the case in TOS.

There is no way to test this directly without getting very deep into a debugging process though.
As far as I understand, because TOS is built in Java, both Switch and If statements will not execute logic beyond the branch that returns true. Other languages, and specifically other implementations of switch/if can often evaluate the entire expression, but I do not believe that to be the case in TOS.

There is no way to test this directly without getting very deep into a debugging process though.
 
Solution

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

Sorry for the late response, but I just wanted to let you know the if expression will always evaluate what's true AND what's false, the if statement does not.

This was pulled directly from the learning center: https://tlc.thinkorswim.com/center/reference/thinkScript/Reserved-Words/if


As a reserved word, if is used in if-expressions and if-statements to specify a conditional operator with then and else branches. Both branches are required for the operator to be valid. However, while the if-expression always calculates both then and else branches, the if-statement only calculates the branch defined by whether the condition is true or false. In thinkScript®, there is also an If-function with a different syntax and usage.


Syntax (if-expression)
plot <plot_name> = if <condition>
then <expression1>
else <expression2>;



plot <plot_name> = if <condition1>
then <expression1>
else if <condition2>
then <expression2>
else <expression3>;

Syntax (if-statement)
plot <plot_name>;
if <condition1> [then] {
<plot_name> = <expression1>;
} else if <condition2> [then] {
<plot_name> = <expression2>;
} else {
<plot_name> = <expression3>;
}



plot <plot_name>;
if <condition1> [then] {
<plot_name > = <expression1>;
} else {
if <condition2> [then] {
<plot_name> = <expression2>;
} else {
<plot_name> = <expression3>;
}
}
 
Last edited by a moderator:

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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