Percentage change from the previous close of the day

751921

New member
Hello from Ukraine. I want to ask, is it possible in TOS, on the chart, to show, instead of the price bubble, a percentage change from the previous close of the day?
 

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

Attachments

  • 02-06-2023 08.19.43.png
    02-06-2023 08.19.43.png
    16.5 KB · Views: 158
Hi guys!!! Help me change the code so that the value of what percentage it is is displayed opposite each line. As in the example in the screenshot. Thanks everyone

Code:

input aggregationPeriod = AggregationPeriod.DAY;

input length = 1;

input displace = -1;

input showOnlyLastPeriod = no;

plot PrevDayClose;

if showOnlyLastPeriod and !IsNaN(close(period = aggregationPeriod)[-1]) { PrevDayClose = Double.NaN;

} else { PrevDayClose = Highest(close(period = aggregationPeriod)[-displace], length);

}

plot PrevDayClose_1 = PrevDayClose * 1.01;

plot PrevDayClose_2 = PrevDayClose * 1.02;

plot PrevDayClose_3 = PrevDayClose * 1.03;

plot PrevDayClose_4 = PrevDayClose * 1.04;

plot PrevDayClose_5 = PrevDayClose * 1.05;

plot PrevDayClose_6 = PrevDayClose * 1.06;

plot PrevDayClose_7 = PrevDayClose * 1.07;

PrevDayClose.SetDefaultColor(GetColor(7));

PrevDayClose.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);

PrevDayClose_1.SetDefaultColor(GetColor(0));

PrevDayClose_1.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);

PrevDayClose_2.SetDefaultColor(GetColor(1));

PrevDayClose_2.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);

PrevDayClose_3.SetDefaultColor(GetColor(2));

PrevDayClose_3.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);

PrevDayClose_4.SetDefaultColor(GetColor(3));

PrevDayClose_4.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);

PrevDayClose_5.SetDefaultColor(GetColor(4));

PrevDayClose_5.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);

PrevDayClose_6.SetDefaultColor(GetColor(5));

PrevDayClose_6.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);

PrevDayClose_7.SetDefaultColor(GetColor(6));

PrevDayClose_7.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
 

Attachments

  • 2023-10-16-FLEXIBLE_GRID-01.png
    2023-10-16-FLEXIBLE_GRID-01.png
    129.2 KB · Views: 118

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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