Configure TradingView webhook alerts for Bitget

Complete the webhook step for tradingview webhook automation and route structured alerts from TradingView to Bitget through TradeAdapter.

Step 1

Add strategy and create TradingView alert

Attach your Pine strategy and create an alert for order events on a Bitget symbol.

Strategy
TradingView strategy on chart
Create alert
TradingView alert dialog
Step 2

Set webhook URL and JSON message

Paste your TradeAdapter webhook URL and JSON payload for consistent real-time trade execution.

Message
TradingView alert message
Webhook
TradingView webhook notification
Step 3

Recreate alerts after strategy changes

Recreate TradingView alerts whenever strategy parameters change so routing stays aligned.

JSON

TradingView alert message template

Credentials live on the broker you saved under My Brokers; market, ticker, order type, and quantity are configured once on that broker's Strategy — never in the TradingView alert. If your Bitget strategy is on the Spot market with Market order type, also include "order_price": "{{close}}" in the alert — Bitget needs it for rounding even though the order still executes at market. The same field is also required if your strategy uses Limit order type, or has Stop Loss / Take Profit enabled. If your strategy has "Sync with TradingView position" enabled, also include market_position and prev_market_position from your strategy.

{
  "strategy_name": "bitget-momentum",
  "order_action": "{{strategy.order.action}}",
  "order_contracts": "{{strategy.order.contracts}}"
}