How To Set TradingView Alerts

Server-Side Alerts

If you’re new to TradingView or Pine Script and you are unsure of how to properly set server-side alerts and alert conditions on the TradingView platform, then this post is for you!

Server-side alerts are alerts that are monitored by TradingView’s servers, meaning you do not need to leave your computer running with the charting platform open in order for them to trigger.

In one of my Pine Script Lessons I explain how to add alert functionality to your custom scripts. That post is intended for people interested in Pine Script coding.

In this post I will sum up exactly how to create all types of script alerts on the TradingView platform including price alerts, drawing tool alerts and indicator alerts.


TradingView Alert Types

TradingView has several different types of alert actions, all of which can be enabled or disabled as you wish (depending on your membership plan).

TradingView Alert Actions

Notify on App only works if you first download the (free) TradingView app (Android or iOS). If you have the app installed and a trading alert is triggered then you will receive a push-notification straight to your mobile device.

Show Popup will display a window popup inside your TradingView chart window when an alert is triggered. The popup will display on every chart you have open.

Send Email sends you an email whenever an alert is triggered. You can specify the message that is sent so that you know which indicator triggered the email alert.

Play Sound plays an audio alert whenever a signal is triggered. You can select from 8 different sounds and you can choose how long the sound plays for. This is a fantastic tool for day-traders and I use it every day.

Send Email-to-SMS will send you a text message to your phone. In order to use this feature you must have a phone data carrier that allows email-to-SMS functionality (eg. MobileNumber@online.telstra.com.au).


How To Set TradingView Alerts

You can set alerts like so:

How To Set TradingView Alerts
How To Set TradingView Alerts

You can set alerts a multitude of ways. The easiest way is to just click on the Alert menu and then click the Plus button. Then you can choose what to set an alert for and the conditions that trigger it.

The alert options are fairly straight-forward to understand, but I’ll break them down below.


Alert Options & Conditions

TradingView Alert Options


Condition

This section sets the conditions which must be met in order for the alert to trigger. You can click on the first box to select the script that you want to generate your trading signal.

In the second box you can choose which variable you want to monitor.

The third box is used to set the condition that the second box’s variable must meet in order to trigger the alert.

Note that if the script you are using generates its own alerts based on internal conditions that the script looks for (like in the above example with my RSI Signals) then you do not need to touch the second or third box.

Simply select the script you want to use for alerts and the script will decide when to send out the alerts. These particular options are more for using basic alerts on drawing tools which I will demonstrate below. For most script-based alerts you will only need to touch the first box to select the script.


Options

These four buttons let you choose when the alert is triggered (on a candle and time basis).

If you set it to Only Once then the alert will trigger a single time without repeating, and it will trigger during the current candle without waiting for it to close.

If you set it to Once Per Bar then it will trigger once per bar (before the candle closes), and it will repeat on any new bars.

If you set it to Once Per Bar Close it will only trigger when the candle closes. This is the most common setting that you will use for trading signals if you are a systematic trader, and it will repeat on any new bars if the alert conditions are met.

Once Per Minute will trigger the alert on any current candle multiple times, but only once per every minute. This is great for detecting potential setups before the candle closes so that you can be prepared in advance. I often use this for assistance with trading my intraday strategies, so that I spend less time staring at charts during the day.


Expiration Time

This section lets you set the expiration time of the alert.

How long you can have the alert active depends on your membership plan. On a Free account you are limited to only 1 alert per account and the maximum alert expiration is 2 months.

On a Pro account you can set multiple alerts (up to 10 on Pro and 30 on Pro+), also with a maximum expiration of 2 months.

On the Premium account you can set up to 200 alerts and gain access to the open-ended setting which will leave the alert active forever until you manually disable it.

You can set any date within your maximum time period and any time of day. Expiry times are useful for tracking day-trading setups with a limited time window, but most of the time you will want to set the alert for the maximum time possible – until your setup is invalidated or you have already acted on it.

If you’re not sure what account type functionality you need or you want a full break-down on the features and pros vs. cons of each account type, then check out my comprehensive TradingView Review for more information.



Setting Alerts on Indicators

One of the simplest ways to set alerts for indicators with alert functionality is to simply click on this little plus symbol (+) when your mouse is hovering over the indicator box.

For example here is how you can set a simple alert for when the RSI goes oversold at 30:

How To Set TradingView Alerts on Indicator Values

This will only work on certain indicators, but it is a common feature for most of them.

If the indicator you are using does not have this functionality then you can set alerts using the Manage Alerts interface instead. Here are some examples of how to set alerts for a few of my custom indicators:

Setting alerts for the Ultimate Pullback Indicator
Setting alerts for the Breakout Indicator


Setting Price Alerts

The other way to add alerts is to click on the same Plus sign on the actual chart itself. This will create a horizontal alert.

How To Add TradingView Alerts by Price

If you click the Add Alert button then it will create a basic price alert. If a candle crosses that specific price in either direction you will be alerted.

You can change this in the settings menu.


Adjusting Alert Settings

Once you have set an alert you can change its settings at any time from the alerts menu.

Simply open up the menu and click on the cog icon:

TradingView Alert Options Icon

Then the settings menu will appear. From inside this menu you can adjust the conditions and settings of the alert.

TradingView Alert Types

If you click on the box beneath the indicator you have set an alert for you can choose which alert condition will trigger the alert.

Crossing Down will only trigger if price or the indicator value moves past the specified value in the downwards direction, whereas Crossing Up does the opposite.

There are several other options that are all fairly self-explanatory, but most of those options are designed to be used on Drawing Tools.



Setting Alerts on Drawing Tools

This feature is particularly useful for pattern traders.

You can set alerts based on your technical analysis drawings. This is great for flag, wedge, trend-line and channel breakout signals. You can set alerts on any type of drawing tool you wish.

For example here is how you would set an alert that triggers when the candle closes beyond a trend line (signalling a breakout setup):


How To Set A TradingView Alert on Drawing Tools


How To Add Alert Functionality To Existing Scripts

This is for people with prior coding experience or people who have gone through the basics section of my Pine Script Lessons.

If you come across an existing indicator script that you like but it doesn’t have an option to set alerts for a variable you want it to, you can add alerts easily with this line of code placed at the end of your script:

alertcondition(true/false variable, title="Alert!", message="Alert triggered")


Simply replace the first parameter (“true/false variable”) with a variable that you desire. The variable or operation must return a Boolean type in order to successfully compile.


Free Premium Charts!

4 4 votes
Article Rating
Subscribe
Notify of
guest
12 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Anonymous
Anonymous
3 years ago

Hello
Can I create an alert when candlestick reaches 50 min ( 1hr chart) when hammer is created? On trading view
Thank you

Victor
Victor
3 years ago

Thanks so much,
Please how can i create an audible alert when E.M.A indicator crosses M.A..thanks

Anonymous
Anonymous
3 years ago

How do I view alert signals on the chart after downloading alerts csv file?

RobertDG
RobertDG
3 years ago

The Volume + script is terrific – really appreciated.
On the alert condition you are meant to be able to pass parameters (in v4) but I found this to be unreliable, eg.

// Send out an alert if this candle meets our conditions
alertcondition(alert, title=”Volume Alert!”, message=”Volume signal for {{exchange}}:{{ticker}}, Price = {{close}}, Volume = {{volume}} at {{time}}”)

the help says you can do this? Have you had any joy with this?

Vasu K
Vasu K
3 years ago

How can I set price alert with RSI Movement in TradingView ?

Anonymous
Anonymous
Reply to  Vasu K
3 years ago

If you means for create price alert + create one more alert for RSI you cant do it with using TradingView. You can combine alerts by using external services like https://www.alarumist.com/

Hari
Hari
3 years ago

Hello there, Has anyone used a strategy(not study) to fire alert messages programmatically containing {{strategy.order.action}} or {{strategy.order.contracts}} dynamic values using the {{strategy.order.alert_message}} ? I have used and it works.  However, the challenge is to pass the actual values instead of text. Am able to use the {{strategy.order.alert_message}} to pass the static message(does not return the actual values, just the text!) to the Message Box, while the above dynamic values does not get passed. Here is the code, am using: message_long_entry = input(“[{“E”:”EXCH”,”IT”:”SBIN”,”Q”:”{{strategy.order.contracts}}”,”OT”:”MARKET”,”P”:”MIS”,”TT”:”{{strategy.order.action}}”,”VL”:”DAY”,”AT”:”BROKER”}]”) strategy.entry(“long”, strategy.long, when=longsubcondition, alert_message = message_long_entry) Any pointers or guidance is much much appreciated from the experts and… Read more »

Shibhu K
Shibhu K
2 years ago

Hi,
I want to create an alert when the candle open and closed below or above MA. How can I do that? Please help

Robin F
Robin F
4 months ago

Hi, I use a 1-Second chart and I want to set an alert to trigger up to 3 times per minute when a certain condition is met, but Tradingview only allows once per minute, or every bar. Is my only option to create a custom alert? I’ve never used Pinescript and have zero coding experience. Thanks

Paul
Paul
Reply to  Robin F
19 days ago

You need more than that, you need your own server and custom code indeed…