TradingView Webhook Setup Guide

Use this after you create a webhook in the portal. It shows the exact webhook URL to paste in TradingView, how to create routes, and what message to put in your TradingView alert.

Tip: Click “Print / Save PDF”

Quick Details (copy/paste)

Webhook URL
Webhook ID
Back to Dashboard
TradingView requirement: TradingView Basic (paid) plan and above is mandatory to execute alerts from TradingView (webhook alerts).
Disclaimer: Trading involves risk. Due to network errors or any other factor, alerts/orders may be delayed, missed, duplicated, or executed at different prices. TradeSteady will not be responsible for any losses.
If you want a PDF: click Print / Save PDF and choose Save as PDF.

1) Create Route(s) (in portal)

  1. Dashboard → Routes
  2. Click Create Route
  3. Select this webhook and choose your destination (Binance / MT5 / Delta / Telegram / Discord)
  4. Enter API credentials (if required) and save
One webhook can have multiple routes (example: Binance Futures + Telegram notifications).

2) Create the TradingView Alert

  1. Open TradingView chart → click Alert (bell) → Create Alert
  2. Paste the Webhook URL
  3. In Message, paste one of the formats below
  4. Save and enable the alert

MT5 Setup (only if you route to MT5)

  1. Create an MT5 route in the portal with your MT5 account number
  2. Download the EA and install it on your MT5 terminal
  3. Enable Algo Trading + DLL + WebRequest whitelist
MT5 WebRequest whitelist URL should be your server base URL (shown above).

3) TradingView Alert Message (copy/paste)

Beginner (no JSON):
Long {{ticker}} Q={{strategy.order.contracts}} SL=2% TP=5%
Manual test message example: Buy BTCUSDT Q=0.01
JSON (optional/advanced):
{
  "action": "{{strategy.order.action}}",
  "symbol": "{{ticker}}",
  "price": {{close}},
  "quantity": {{strategy.order.contracts}}
}
More formats: Alert Message Formats