Market label trend

nitrous

Member
I’m looking for the following labels to show up on the chart :

Spy
Nasdaq
Qqq
Vix

The labels should turn green if the that particular sector is trending up and red if trending down, during market hours.

Wasn’t able to find the labels in this forum for what I want.

TIA.
 
@nitrous Here's something I've had for a bit. The Nasdaq and QQQ are the same - unless you mean the Nasdaq Composite?
Code:
# Market Labels
# Pensar

input symbol_1 = "SPY";
input symbol_2 = "QQQ";
input symbol_3 = "IWM";
input symbol_4 = "VIX";

def c1 = close("SPY", AggregationPeriod.DAY);
def c2 = close("QQQ", AggregationPeriod.DAY);
def c3 = close("IWM", AggregationPeriod.DAY);
def c4 = close("VIX", AggregationPeriod.DAY);

def a1 = (c1 - c1[1]) / c1[1];
def a2 = (c2 - c2[1]) / c2[1];
def a3 = (c3 - c3[1]) / c3[1];
def a4 = (c4 - c4[1]) / c4[1];

AddLabel(1, "SPY: " + AsPercent(a1),
         if a1 > 0 then CreateColor(0, 204, 75)
         else if a1 == 0 then Color.LIGHT_GRAY
         else CreateColor(250, 90, 0));

AddLabel(1, "QQQ: " + AsPercent(a2),
         if a2 > 0 then CreateColor(0, 204, 75)
         else if a2 == 0 then Color.LIGHT_GRAY
         else CreateColor(250, 90, 0));

AddLabel(1, "IWM: " + AsPercent(a3),
         if a3 > 0 then CreateColor(0, 204, 75)
         else if a3 == 0 then Color.LIGHT_GRAY
         else CreateColor(250, 90, 0));

AddLabel(1, "VIX: " + AsPercent(a4),
         if a4 > 0 then CreateColor(0, 204, 75)
         else if a4 == 0 then Color.LIGHT_GRAY
         else CreateColor(250, 90, 0));

# end code
 

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

@nitrous Here's something I've had for a bit. The Nasdaq and QQQ are the same - unless you mean the Nasdaq Composite?
Code:
# Market Labels
# Pensar

input symbol_1 = "SPY";
input symbol_2 = "QQQ";
input symbol_3 = "IWM";
input symbol_4 = "VIX";

def c1 = close("SPY", AggregationPeriod.DAY);
def c2 = close("QQQ", AggregationPeriod.DAY);
def c3 = close("IWM", AggregationPeriod.DAY);
def c4 = close("VIX", AggregationPeriod.DAY);

def a1 = (c1 - c1[1]) / c1[1];
def a2 = (c2 - c2[1]) / c2[1];
def a3 = (c3 - c3[1]) / c3[1];
def a4 = (c4 - c4[1]) / c4[1];

AddLabel(1, "SPY: " + AsPercent(a1),
         if a1 > 0 then CreateColor(0, 204, 75)
         else if a1 == 0 then Color.LIGHT_GRAY
         else CreateColor(250, 90, 0));

AddLabel(1, "QQQ: " + AsPercent(a2),
         if a2 > 0 then CreateColor(0, 204, 75)
         else if a2 == 0 then Color.LIGHT_GRAY
         else CreateColor(250, 90, 0));

AddLabel(1, "IWM: " + AsPercent(a3),
         if a3 > 0 then CreateColor(0, 204, 75)
         else if a3 == 0 then Color.LIGHT_GRAY
         else CreateColor(250, 90, 0));

AddLabel(1, "VIX: " + AsPercent(a4),
         if a4 > 0 then CreateColor(0, 204, 75)
         else if a4 == 0 then Color.LIGHT_GRAY
         else CreateColor(250, 90, 0));

# end code
Thanks.
What’s nasdaq composite?
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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