How to Get TradingView Strategy Alerts as Phone Calls
You spent weeks building the strategy. Backtested it across every market condition, tuned the parameters, watched the equity curve climb. It's ready. You add it to a live chart, set it running, and get on with your day.
Then it fires a long entry at the exact level you'd planned, and you find out three hours later when the trade is already deep in profit without you. The strategy did its job. You just weren't there to act on it.
That's the gap between backtesting and live trading, and it has nothing to do with your strategy. It's about how the alert reaches you. Here's how to set up a TradingView strategy alert properly and route it to a phone call so the moment your strategy triggers, your phone rings.
Strategy Alerts Are Set Up Differently
The first thing that trips traders up: a strategy alert is not the same as an indicator alert, and the setup behaves differently even though you use the same dialog.
An indicator alert fires when a condition you pick becomes true, such as RSI crossing 30. A strategy alert fires when your strategy actually fills an order, an entry or an exit, based on the logic baked into the strategy itself. You don't choose the condition manually. The strategy decides, and the alert follows.
This matters because if you go looking for your usual "crossing" condition in the dropdown, you won't find your strategy's entries there. You need the right option, which we'll get to in a moment.
This guide covers the no-code path: setting up an alert on any strategy already on your chart, whether you wrote it or added a published one. If you write your own Pine Script and want to bake the alert message into the code itself, our Pine Script alert tutorial covers that route in full.
Step 1: Add Your Strategy to the Chart
Open the chart you want to trade. From the Indicators menu, add your strategy, either one you've written under "My scripts" or one from the public library. Once it's on the chart, you'll see the Strategy Tester panel open at the bottom with the backtest results.
Confirm the strategy is actually placing trades on the chart. If you don't see entry and exit markers on the price action, the alert will have nothing to fire on. No fills, no alerts.
Step 2: Create the Alert
Click the clock icon in the right-hand toolbar to open the Alerts panel, then hit "Create Alert."
In the Condition dropdown, select your strategy by name. This is the part that's different from indicator alerts. Below the strategy name, you'll see the trigger options. The one you want is "Order fills only."
"Order fills only" tells TradingView to fire the alert every time your strategy executes an order: every entry, every exit, every stop or take-profit fill. That's exactly what you want for live notification, because each fill is a moment you'd want to know about and potentially act on.
Step 3: Write a Message You Can Act On
The Message field is where you make the alert genuinely useful. TradingView gives you strategy-specific placeholders that get replaced with live values the moment the order fills:
{{strategy.order.action}}becomes "buy" or "sell"{{strategy.order.contracts}}becomes the number of contracts or units filled{{strategy.order.price}}becomes the actual fill price{{strategy.position_size}}becomes your position size after the fill{{ticker}}becomes the symbol
For a phone call alert, you want a message that reads clearly out loud. TradeAlert.Pro reads the text field of a JSON payload, so structure the message like this:
{"text": "{{strategy.order.action}} signal on {{ticker}} at {{strategy.order.price}}. Position size now {{strategy.position_size}}."}
When your strategy fills a long entry, the call comes through reading: "buy signal on EURUSD at 1.0847. Position size now 1." Enough to know exactly what happened and decide whether to follow it manually.
Step 4: Add the Webhook
This is the step that turns a passive notification into a phone call. In the alert dialog, open the Notifications tab.
Tick "Webhook URL" and paste in your TradeAlert.Pro webhook URL. You'll find it in your dashboard after connecting your phone number. That single URL is the bridge: when your strategy fills an order, TradingView sends the alert to TradeAlert.Pro, which reads your message and calls your phone.
TradingView has no native phone call option. Push, email, and SMS are all it offers directly, and all of them are easy to miss when you're away from the screen, which is precisely when a live strategy fires. The webhook is the only delivery method that can reach a service capable of actually calling you. If that distinction is new to you, we break it down fully in built-in alerts vs webhook alerts.
Save the alert.
The 2FA Catch That Stops Most People
Before you test anything, enable two-factor authentication on your TradingView account.
TradingView requires 2FA for webhook delivery. If it's switched off, your strategy alert will fire and look completely normal in the log, but the webhook request is silently dropped. No call, no error, no clue as to why. This is the single most common reason a correctly built strategy alert produces no phone call. Turn 2FA on first and save yourself the confusion.
Once Per Bar vs Bar Close
One setting determines whether your alerts are reliable or maddening. Strategy fills can happen intrabar, and if your strategy uses signals that can change before a candle closes, you can get an alert for a fill that later disappears when the bar finalises.
If your strategy logic is built around bar closes, configure it to evaluate on close so your alerts match your actual fills. If it genuinely trades intrabar, accept that you'll be alerted to live fills as they happen. The mismatch between what you backtested and what fires live almost always comes down to this. Align your alert timing with the timeframe your strategy was designed and tested on.
Test Before You Rely On It
Don't wait for a real market signal to discover something's misconfigured. In the alert dialog you can fire a test, and TradeAlert.Pro gives you free test calls so you can confirm the whole chain works: strategy fill, webhook, phone ringing, message reading correctly.
Run one test call before your next session. Hear the message, check it makes sense out loud, and confirm the call actually reaches you. Then you can set your strategy running and trust that it'll reach you when it matters.
TradeAlert.Pro sends your TradingView alerts as a phone call — you pick up, you act. Free to try, no credit card needed.
Next Steps
A backtested strategy is only as good as your ability to act on it live, and that comes down to delivery. Add your strategy to the chart, create an alert with the "Order fills only" condition, write a message using the strategy placeholders, paste your TradeAlert.Pro webhook URL into the Notifications tab, and enable 2FA. Your phone then rings on every fill.
If you'd rather define the alert message inside your Pine Script code, the Pine Script alert tutorial shows the alert_message= approach. And if you want the complete picture of getting TradingView alerts as phone calls, from account setup to plan options, that guide has the rest. The whole point: do the work once, walk away from the screen, and let your phone bring you back when your strategy actually triggers.