turn on/off label script help

MLlalala

Member
Here is my script, if i wanna turn show no for symb11 AND the label off, how should i do it? I only know how to turn the plot off but the label will still be there

input symb11 = "spy";

input show_symb11=yes;

def price = close(symb11);

plot symb1 = movingAverage(averageType.EXPONENTIAL,price,3);
symb1.SetHiding(!show_symb11);
addLabel(1, symb11, symb1.TakeValueColor());
 
Solution
Here is my script, if i wanna turn show no for symb11 AND the label off, how should i do it? I only know how to turn the plot off but the label will still be there

input symb11 = "spy";

input show_symb11=yes;

def price = close(symb11);

plot symb1 = movingAverage(averageType.EXPONENTIAL,price,3);
symb1.SetHiding(!show_symb11);
addLabel(1, symb11, symb1.TakeValueColor());

Either replace the 1 in addlabel with show_symb11 or create a seperate yes/no input similar to show_symb11 for the label.
Here is my script, if i wanna turn show no for symb11 AND the label off, how should i do it? I only know how to turn the plot off but the label will still be there

input symb11 = "spy";

input show_symb11=yes;

def price = close(symb11);

plot symb1 = movingAverage(averageType.EXPONENTIAL,price,3);
symb1.SetHiding(!show_symb11);
addLabel(1, symb11, symb1.TakeValueColor());

Either replace the 1 in addlabel with show_symb11 or create a seperate yes/no input similar to show_symb11 for the label.
 
Solution

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

If I follow what you are asking correctly in that you want the label to turn on and off with the show_symb11 input option?

Then swap out the '1' in your AddLabel with 'show_symb11'. Or to reverse it you can use '!show_symb11'.

Like this:
AddLabel(show_symb11, symb11, symb1.TakeValueColor());

The '1' or 'Yes' in that first parameter keeps the label always on. A '0' or 'No' keeps it always off. Alternatively you can also use a condition such as 'Price > Price[1]' to turn the label on and off when met. Which will turn the label on only when Price is greater than the previous Price.

For example:
AddLabel(Price > Price[1], symb11, symb1.TakeValueColor());

https://tlc.thinkorswim.com/center/reference/thinkScript/Functions/Look---Feel/AddLabel

Or the super simple '#' in front of the line to Remark out the line completely. :)


Oops I see SleepyZ posted while I was typing.
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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