Reformat script to %

Tsw85

New member
Good day All,

Can someone please help me reformat this simple script to display as a percentage with two decimal places? Additionally, if positive I would like it to display as green and if negative, red. I use the script on my watchlists.

Thanks for your assistance!...

input length = 9;
AddLabel(yes, AsText(((ask - open) / open[length]), NumberFormat.THREE_DECIMAL_PLACES));
 
Solution
Good day All,

Can someone please help me reformat this simple script to display as a percentage with two decimal places? Additionally, if positive I would like it to display as green and if negative, red. I use the script on my watchlists.

Thanks for your assistance!...

input length = 9;
AddLabel(yes, AsText(((ask - open) / open[length]), NumberFormat.THREE_DECIMAL_PLACES));

Since ask was not defined and that pricetype is not reliable to use, it was defined as def ask = close.

Ruby:
input length = 9;
def ask = close;
AddLabel(yes, Aspercent((ask - open) / open[length]), if (close - open) / open[length] > 0 then Color.GREEN else Color.RED);
Good day All,

Can someone please help me reformat this simple script to display as a percentage with two decimal places? Additionally, if positive I would like it to display as green and if negative, red. I use the script on my watchlists.

Thanks for your assistance!...

input length = 9;
AddLabel(yes, AsText(((ask - open) / open[length]), NumberFormat.THREE_DECIMAL_PLACES));

Since ask was not defined and that pricetype is not reliable to use, it was defined as def ask = close.

Ruby:
input length = 9;
def ask = close;
AddLabel(yes, Aspercent((ask - open) / open[length]), if (close - open) / open[length] > 0 then Color.GREEN else Color.RED);
 
Solution

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

@SleepyZ thanks so much! Can you please help me reformat this to two decimal places?

Since you wanted a percentage, rounding the data to two decimal places before turning that into a percentage often results in 0%, especially for intraday periods. The aspercentage function does automatically format the data into two decimal places.

Here are percentage methods and fractional methods that you can choose what you may want to use.

Ruby:
input length = 9;
def ask  = close;
def data = (ask - open) / open[length];
#Percentages

#Percentage displaced rounded to two decimal places using aspercent on unrounded data
AddLabel(yes, aspercent(data), if data > 0 then Color.GREEN else Color.RED);

#Percentage displaced on data rounded to two decimal places
AddLabel(yes, aspercent(round(data, 2)), if data > 0 then Color.GREEN else Color.RED);

#Fractions

#No Rounding
AddLabel(yes, data, if data > 0 then Color.GREEN else Color.RED);

#Rounding to two decimal places using astext function
AddLabel(yes, astext(data), if data > 0 then Color.GREEN else Color.RED);

#Round to two decimal places places using round function
AddLabel(yes, round(data, 2), if data > 0 then Color.GREEN else Color.RED);
 
Anyone know how to script it so 91% isn't followed by 9% when I organize from highest to lowest on a watchlist?

97%
91%
8%
6%
45%
23%
15%
104%

to

104%
97%
91%
45%
etc...
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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