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
- In the bot, get your webhook URL and secret (the TradingView / alerts connect section).
- On TradingView, create an Alert.
- In Notifications → Webhook URL, paste your webhook address.
- 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"
}
- 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.Pautomatically. - You can include
tpandslin the JSON to set automatic take-profit / stop-loss.
Need a JSON template for your strategy? Message @fastbot_support.