Skip to content

Updates & Releases

Notable changes to the Trading API. Newest first. Breaking changes are marked ⚠ Breaking.

Added — Pending orders. Full lifecycle support for limit and stop orders:

  • POST /v1/orders — place a buy_limit, sell_limit, buy_stop, or sell_stop
  • PATCH /v1/orders/{ticket} — modify price / SL / TP / volume / expiration
  • DELETE /v1/orders/{ticket} — cancel

See Orders.

Changed. GET /v1/orders now reflects place / modify / cancel within ~2 seconds (previously it could serve a stale list until reconnect).

⚠ Breaking — Comment prefix. API-originated order/trade comments are now prefixed with API instead of -API. If you match on the comment prefix, update your parser.

Fixed. GET /v1/symbols/{symbol} again returns the populated path field (MT5 folder grouping, e.g. FX\Forex\Major Pairs\EURUSD). It had briefly returned an empty string for all symbols.