How to Send TradingView Webhook Alerts to Telegram & WhatsApp
TradingView limits free-plan alerts and only delivers them in-app or by email. Learn how to pipe TradingView webhook alerts to Telegram, WhatsApp or Discord via TradingField — in under 5 minutes.
June 20, 2026 · 5 min read
The problem with TradingView alerts
TradingView is the industry standard for charting and technical analysis. But its alert system has two well-known limitations:
- Free plan: 1 active alert. The moment you set a second one, the first is disabled. Pro plans start at $14.95/month just to unlock more alerts.
- Delivery: in-app and email only. No Telegram, no WhatsApp, no Discord — unless you build a custom webhook integration.
Webhooks are TradingView’s escape hatch. They let you POST an alert payload to any URL when a condition fires. TradingField provides that URL and forwards the alert to your chosen channels instantly.
How it works
- TradingView fires an alert and POSTs a JSON payload to your TradingField webhook URL.
- TradingField receives the payload, parses it, and routes the notification.
- You receive a message on Telegram, WhatsApp, Discord, email or push — within seconds.
No server to maintain. No code to write. The whole thing takes about 5 minutes to set up.
TradingView alert message (webhook payload example)
{
"symbol": "BTCUSDT",
"price": "{{close}}",
"condition": "RSI crossed above 70",
"time": "{{time}}"
}Step-by-step setup
- 1
Create a TradingField account
Sign up at tradingfield.app/signup. The free plan is enough to test the integration. Paid plans give you unlimited webhook endpoints. - 2
Get your webhook URL
In your dashboard, go to Webhooks → New webhook. Give it a name (e.g. “TradingView BTC RSI”), select your delivery channels (Telegram, WhatsApp, Discord, email…), and copy the generated URL. It looks like:https://api.tradingfield.app/webhooks/wh_xxxxxxxxxxxx - 3
Create an alert in TradingView
On any TradingView chart, click the Alert button (clock icon, top toolbar) or press Alt+A. Configure your condition as usual (e.g. RSI crossing a level, price hitting a zone). - 4
Enable Webhook URL in the alert
In the alert dialog, scroll down to Notifications and check Webhook URL. Paste your TradingField webhook URL. Optionally add a JSON message in the Message field to include context (symbol, price, condition). - 5
Save and test
Save the alert. Back in TradingField, click Send test on your webhook to verify delivery. You should receive the message on your selected channels within a few seconds.
TradingField vs TradingView alerts — quick comparison
| Feature | TradingView (free) | TradingField |
|---|---|---|
| Active alerts | 1 | Up to unlimited |
| Telegram | ✗ | ✓ |
| ✗ | ✓ | |
| Discord | ✗ | ✓ |
| ✓ | ✓ | |
| Push notification | ✓ | ✓ |
| Webhook inbound | ✓ (sends only) | ✓ (receives + routes) |
| BRVM coverage | ✗ | ✓ |
| Free plan | $0 / 1 alert | $0 / 5 alerts |
Frequently asked questions
Do I need a paid TradingView plan to use webhooks?
Can I send TradingView Pine Script alerts via webhook?
{{close}}, {{ticker}} and other TradingView placeholders in the message body to include dynamic values.How fast does the alert reach Telegram or WhatsApp?
Can one webhook send to multiple channels at once?
Set up your first webhook — free
No credit card. Takes 5 minutes. Works with TradingView, custom scripts or any tool that can POST JSON.
Create my free account