price on pervious candle only

MFitz73

Member
well about 3 weeks ago I thought this would have been a simple task even for me but here I am ready to just lose it! lol.
I have been trying to have the HLC3 value of the previous candle printed under the previous candle. All I am able to do is get the HLC3 value under all the candles. Is it possible to do this? I think I was able to do it with add bubble at one point, but I just want the number printed under the previous candle.
Thanks for any help or suggestion.
Mike
 
Solution
well about 3 weeks ago I thought this would have been a simple task even for me but here I am ready to just lose it! lol.
I have been trying to have the HLC3 value of the previous candle printed under the previous candle. All I am able to do is get the HLC3 value under all the candles. Is it possible to do this? I think I was able to do it with add bubble at one point, but I just want the number printed under the previous candle.
Thanks for any help or suggestion.
Mike
This allows you to choose the candle under which you want to display the selected price.

You can test the result with the addchartbubble option.

Screenshot 2023-08-16 151708.png
Code:
#price on pervious candle only

input barsback = 1;
input price    = hlc3;
def b  = -barsback...
well about 3 weeks ago I thought this would have been a simple task even for me but here I am ready to just lose it! lol.
I have been trying to have the HLC3 value of the previous candle printed under the previous candle. All I am able to do is get the HLC3 value under all the candles. Is it possible to do this? I think I was able to do it with add bubble at one point, but I just want the number printed under the previous candle.
Thanks for any help or suggestion.
Mike
This allows you to choose the candle under which you want to display the selected price.

You can test the result with the addchartbubble option.

Screenshot 2023-08-16 151708.png
Code:
#price on pervious candle only

input barsback = 1;
input price    = hlc3;
def b  = -barsback;
def b1 = b - 1;
plot Prev_hlc3 = if !IsNaN(close[b]) and IsNaN(close[b1]) then price else Double.NaN;
Prev_hlc3.SetPaintingStrategy(PaintingStrategy.VALUES_BELOW);
input test = no;
AddChartBubble(test, high, Round(price), Color.GRAY);

#
 
Solution

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