Nested IF THEN syntax in thinkscript?

congamike

New member
New member question about stacking elses

This:

AssignBackgroundColor(if (MACDH > 0 and close > sma)
then GlobalColor("above")
else GlobalColor("below"));

mostly works. Sadly, there is a third condition I want to trap but can't seem to describe it in TOS.
I tried breaking it up into two AssignBackgroundColor statements, but that crashes.

I want no color assigned in that awkward period when MACDH is up and sma is down (or vice versa). For this I need a third condition which would be a second 'else' layer (no?).

Help? Thanks.
 
I want no color assigned in that awkward period when MACDH is up and sma is down (or vice versa). For this I need a third condition which would be a second 'else' layer (no?).

just keep adding if thens, with an else in between them.

if a then 1
else if b then 2
else if c then 3
else 4

put your 3rd condition (exceptions) first, so if it is true, it will stop processing if thens.

AssignBackgroundColor(
if
(( MACDH is up and sma is down) or (MACDH is up and sma is down))
then color.current

else if (MACDH > 0 and close > sma)
then GlobalColor("above")

else GlobalColor("below"));

https://tlc.thinkorswim.com/center/reference/thinkScript/Constants/Color/Color-CURRENT
 
just keep adding if thens, with an else in between them.

if a then 1
else if b then 2
else if c then 3
else 4

put your 3rd condition (exceptions) first, so if it is true, it will stop processing if thens.

AssignBackgroundColor(
if
(( MACDH is up and sma is down) or (MACDH is up and sma is down))
then color.current

else if (MACDH > 0 and close > sma)
then GlobalColor("above")

else GlobalColor("below"));

https://tlc.thinkorswim.com/center/reference/thinkScript/Constants/Color/Color-CURRENT
So I ended up with this:
AssignBackgroundColor(
if (macdh > 0 and close > sma)
then GlobalColor("above")
else if (macdh < 0 and close < sma)
then GlobalColor("below")
else GlobalColor(color.current)
);

Which does not run and of course I don't understand.
The final GlobalColor statement is highlighted in red. Commenting out the line makes the previous 'if' turn red.
The error message says: Expected class java.lang.String at 25:13
What may I learn from this?
 
Last edited:
Hi, I am trying to edit an "option chain column" script. It was posted here by XeoNoX. In it's current form it randomly generates an erroneously high value when the volume column has "N/A" instead of a value. I am trying to insert/nest an IF statement to stop the calculation or get around it when the volume column has this non-value. I can't seem to get the IF to quit generating an error (red) nor how to "not do anything". Thanks in advance for any assistance.

def x2 = (volume > open_interest*2);
def x = (volume / open_interest)*100;
AddLabel(yes, + Round(x , 0) + "%",color.black);
assignBackgroundColor (if x2 then color.orange else color.black);


My attempt: Underline/bold is red in TOS

def x2 = (volume > open_interest*2);
def x = (volume / open_interest)*100;
If volume > 0 then {
AddLabel(yes, + Round(x , 0) + "%",color.black);
assignBackgroundColor (if x2 then color.orange else color.black);
} else ???
 
So I ended up with this:
AssignBackgroundColor(
if (macdh > 0 and close > sma)
then GlobalColor("above")
else if (macdh < 0 and close < sma)
then GlobalColor("below")
else GlobalColor(color.current)
);

Which does not run and of course I don't understand.
The final GlobalColor statement is highlighted in red. Commenting out the line makes the previous 'if' turn red.
The error message says: Expected class java.lang.String at 25:13
What may I learn from this?

instead of this,
GlobalColor(color.current)

remove globalcolor and just use this,
color.current

it can be used by itself. you didn't define a color called color.current
 

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