Added

Options orders support stop and stop limit order types

The OrderType schema now documents stop and stop_limit as supported order types for single-leg options trading, in addition to market and limit.

  • Equity trading: market, limit, stop, stop_limit, trailing_stop.
  • Options trading: market, limit, stop, stop_limit.
  • Multileg options trading: market, limit.
  • Crypto trading: market, limit, stop_limit.

Broker API

  • POST /v1/trading/accounts/{account_id}/orders
  • GET /v1/trading/accounts/{account_id}/orders
  • DELETE /v1/trading/accounts/{account_id}/orders
  • GET /v1/trading/accounts/{account_id}/orders/{order_id}
  • PATCH /v1/trading/accounts/{account_id}/orders/{order_id}
  • GET /v1/trading/accounts/{account_id}/orders:by_client_order_id
  • POST /v1/trading/accounts/{account_id}/orders/estimation
  • DELETE /v1/trading/accounts/{account_id}/positions
  • DELETE /v1/trading/accounts/{account_id}/positions/{symbol_or_asset_id}
  • GET /v1/rebalancing/runs
  • GET /v1/rebalancing/runs/{run_id}
  • GET /v2/events/trades

Trading API

  • POST /v2/orders
  • GET /v2/orders
  • GET /v2/orders/{order_id}
  • PATCH /v2/orders/{order_id}
  • GET /v2/orders:by_client_order_id
  • DELETE /v2/positions
  • DELETE /v2/positions/{symbol_or_asset_id}