Alert On Percentage

AaronCL

New member
Need Assistance - On the Charts. Is the anyway to see and have a alert the increase and decrease currently for a certain percentage.
 
Solution
Here is an example of alerting on a percentage over / under.
Change it to meet your needs.
1iqp81R.png

Ruby:
# Percent Change Alert and Label
# @merryday 5/23

# define your percentage amount  (.03 == 3%)
input alertPercent = .03;

# define the two variables in your percentage calculation:
def PercentFrom =  DailyOpen() ;
def CurrentPosition = close ;

# define custom colors for labels
DefineGlobalColor("PercentAbove", color.violet) ;
DefineGlobalColor("PercentBelow", color.dark_orange) ;

def percentChange = CurrentPosition / PercentFrom ;
addlabel(yes,
"Open: " +PercentFrom  +"  Current: " +CurrentPosition ,
if 1-percentChange>alertPercent then GlobalColor("PercentAbove") else
if percentChange-1>alertPercent then...
Need Assistance - On the Charts. Is the anyway to see and have a alert the increase and decrease currently for a certain percentage.

yes. alert() can be used to pop up a message for some condition.

from from to what? price, close, high, some average, output of a study,... ?
over what time period?
 

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

Here is an example of alerting on a percentage over / under.
Change it to meet your needs.
1iqp81R.png

Ruby:
# Percent Change Alert and Label
# @merryday 5/23

# define your percentage amount  (.03 == 3%)
input alertPercent = .03;

# define the two variables in your percentage calculation:
def PercentFrom =  DailyOpen() ;
def CurrentPosition = close ;

# define custom colors for labels
DefineGlobalColor("PercentAbove", color.violet) ;
DefineGlobalColor("PercentBelow", color.dark_orange) ;

def percentChange = CurrentPosition / PercentFrom ;
addlabel(yes,
"Open: " +PercentFrom  +"  Current: " +CurrentPosition ,
if 1-percentChange>alertPercent then GlobalColor("PercentAbove") else
if percentChange-1>alertPercent then GlobalColor("PercentBelow") else color.light_gray
);


addlabel(yes,
if percentChange<1 then asPercent(1-percentChange) +" below Open" else asPercent(percentChange-1) +" above Open",
if 1-percentChange>alertPercent then GlobalColor("PercentAbove") else
if percentChange-1>alertPercent then GlobalColor("PercentBelow") else color.light_gray
);


Alert(1-percentChange>alertPercent, 1-percentChange +" below Open", Alert.Bar, Sound.Bell);
Alert(percentChange-1>alertPercent, percentChange-1 +" above Open", Alert.Bar, Sound.Ding);
 
Last edited:
Solution

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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