Start free
Home / Documentation / Command syntax reference

Command syntax reference

Commands, aliases and examples accepted by the current WebhookIngress parser.

Updated 5/11/2026 12:36 PM

# Purpose This reference lists the command names and aliases accepted by WebhookIngress. It describes TradingView webhook input, not dashboard manual-order input.

# Market and pending commands

  • buy also accepts long.
  • sell also accepts short.
  • buystop also accepts buy_stop.
  • buylimit also accepts buy_limit.
  • sellstop also accepts sell_stop.
  • selllimit also accepts sell_limit.

# Close, cancel and modification commands

  • closelong also accepts close_long.
  • closeshort also accepts close_short.
  • closelongshort also accepts close_long_short.
  • cancellong also accepts cancel_long.
  • cancelshort also accepts cancel_short.
  • newsltplong also accepts newsltp_long, breakevenlong, breakeven_long, break_even_long.
  • newsltpshort also accepts newsltp_short, breakevenshort, breakeven_short, break_even_short.

# Market example

json
{
  "action": "buy",
  "symbol": "EURUSD",
  "risk": 1,
  "sl": 20,
  "tp": 40
}

# Pending example

json
{
  "action": "buystop",
  "symbol": "EURUSD",
  "price": 1.0875,
  "risk": 1,
  "sl": 1.0840,
  "tp": 1.0940
}

# Close or modify example

json
{
  "action": "closelong",
  "symbol": "EURUSD",
  "ticket": "123456789"
}

# Parser notes

  • Put the access key in the TradingView Webhook URL: https://webhook.theconnector.fr/YOUR_ACCESS_KEY.
  • risk is numeric; exact lots are sent with volume, lot, lots or fixedVolume.
  • price is required only for pending orders.
  • ttl_ms, vol_lots, sl_pips and tp_pips are not read by the current parser.
  • A late command expires; it is not replayed.


Need a broker-specific edge case? Contact support