fastbot
All guides
TradingView

Connect TradingView via webhook

Let TradingView alerts place Binance orders automatically through fastbot using a JSON webhook.

1 min read·Updated September 16, 2026

If you run a strategy on TradingView, fastbot can receive your alerts via a webhook and place Binance orders automatically.

The idea

TradingView sends a JSON payload to your webhook address whenever an alert fires. fastbot receives it, verifies it with your private secret, then places the order exactly as described.

Steps

  1. In the bot, get your webhook URL and secret (the TradingView / alerts connect section).
  2. On TradingView, create an Alert.
  3. In Notifications → Webhook URL, paste your webhook address.
  4. In the Message box, paste the JSON payload, for example:
{
  "secret": "your-secret-key",
  "exchange": "binance",
  "market": "futures",
  "symbol": "BTCUSDT",
  "action": "buy",
  "orderType": "market",
  "qty": 100,
  "qtyType": "usdt"
}
  1. Save the alert. When the condition triggers, TradingView calls the webhook and fastbot places the order.

Notes

  • Keep your secret private. Anyone with the secret can send signals — treat it like a password.
  • TradingView sends perpetual symbols like BTCUSDT.P; fastbot strips the .P automatically.
  • You can include tp and sl in the JSON to set automatic take-profit / stop-loss.

Need a JSON template for your strategy? Message @fastbot_support.

Ready to start?

Message @fastbot_support on Telegram to get free access.

Sign up via @fastbot_support