Price Above MA Labels

Hello all,

Looking to Optimize this Dot Plot Strategy that I use to easily See Trend Help Please
I'm new to this site and just discovered it. Looks like a ton of information here! I have a Dot plot script that tracks closing prices that can be used on all time frames. I use it under all my charts to easily see trends and for confirmation when we have closing prices above or below a key range for an easy visual on trend direction and angle. I also use it when I'm looking to easily catch turning points on my options charts.

However, I'm looking to amp up the script a bit and need some help.

What am I looking to do? I would like to add a label to the script that goes green and states (Bullish) [Uptrend in place] or Red (bearish)[ Downtrend in place] and states bearish, when there are 3 consecutive closes in the direction of the trend.

I am going to include the current script code below. Scroll Down for Example

input price = close;
input length = 1;
input displace = 0;
plot SMA = Average ( price[-displace], length);
SMA.SetLineWeight(1);
SMA.AssignValueColor(if SMA > SMA[1] then color.dark_GREEN else Color.RED);
SMA.HideBubble();
SMA.SetDefaultColor(GetColor(1));
SMA.SetPaintingStrategy(PaintingStrategy.LINE_VS_POINTS);

1694306228305.png
 
Last edited:

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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