BullionDocs

Automate

Connect TradingView

This is the last step. Point your TradingView alerts at Bullion once, and every signal your strategy fires turns into a real trade — automatically.

01Copy your webhook link

Open your dashboard and copy your personal webhook link from the Alertspage. It’s unique to your workspace — TradingView will send your signals here.

Webhook alerts need a paid TradingView plan. TradingView only sends webhooks on its Essential plan and above — a Bullion requirement you set once on the TradingView side.

02Set up your alert

  1. 1

    Create or edit an alert

    In TradingView, add an alert on your strategy or indicator — or open an existing one to edit.
  2. 2

    Turn on Webhook URL

    In the alert window, open the Notifications tab, tick Webhook URL, and paste your Bullion webhook link.
  3. 3

    Add the message

    In the Message box, paste your alert message. The placeholders fill in automatically when the alert fires:
    json
    {
      "symbol":   "{{ticker}}",
      "side":     "{{strategy.order.action}}",
      "strategy": "my-breakout",
      "price":    {{close}}
    }
    Not sure what goes here? See your alert message →
  4. 4

    Save it

    Save the alert. The next time it triggers, the trade is placed for you — check the Alerts page in your dashboard to see it land.

03Handy TradingView placeholders

TradingView swaps these for live values when an alert fires:

PlaceholderBecomes
{{ticker}}The symbol, e.g. EURUSD
{{strategy.order.action}}BUY or SELL, from your strategy signal
{{close}}The price when the alert fired
{{time}}The time of the signal
No double trades. If TradingView sends the same alert twice (it sometimes retries), Bullion spots the duplicate and quietly ignores it — so you never get an accidental extra order.

Your alert message →