Skip to content

TradingView Alerts

This guide explains how to format TradingView alerts for Trading Bridge.

Webhook URL

Use your environment webhook endpoint:

text
https://your-hub.production.com/webhooks/tradingview

Alert Message Template

json
{
  "symbol": "{{ticker}}",
  "side": "{{strategy.order.action}}",
  "quantity": "{{strategy.order.contracts}}",
  "price": "{{close}}",
  "timestamp": "{{timenow}}",
  "strategy": "breakout-v1"
}

Validation Checklist

  1. Confirm symbol mapping exists in account settings.
  2. Ensure side resolves to buy or sell.
  3. Send one test alert and confirm it appears in signal logs.

Released under the MIT License.