WebhooksJune 20, 2026 · 5 min read

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.

TF

By TradingField Team

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

  1. TradingView fires an alert and POSTs a JSON payload to your TradingField webhook URL.
  2. TradingField receives the payload, parses it, and routes the notification.
  3. 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. 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. 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. 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. 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. 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

FeatureTradingView (free)TradingField
Active alerts1Up to unlimited
Telegram
WhatsApp
Discord
Email
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?

Yes — TradingView restricts webhook URLs to Pro and above plans ($14.95/month). However, TradingField’s own alert system (without TradingView webhooks) works on the free plan and covers most use cases: price above, below, or % move alerts on crypto, forex, stocks and BRVM.

Can I send TradingView Pine Script alerts via webhook?

Yes. Any TradingView alert — whether based on built-in indicators, drawing tools or custom Pine Script — can fire a webhook. Use {{close}}, {{ticker}} and other TradingView placeholders in the message body to include dynamic values.

How fast does the alert reach Telegram or WhatsApp?

Typically under 5 seconds from when TradingView fires the webhook. Delivery speed depends on TradingView’s own latency and the messaging platform — Telegram is generally the fastest.

Can one webhook send to multiple channels at once?

Yes. When you create a webhook in TradingField, you select all the channels you want. A single incoming webhook POST can trigger Telegram, WhatsApp, Discord and email simultaneously.

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