One Trading API
REST APIWebSocket API
REST APIWebSocket API
  1. Price Ticks
  • Introduction
  • Authenticate
  • Subscribe
  • Ping / Pong
  • Trading
    • Introduction
    • Dead Man Switch (Auto Cancellation)
    • Create Order
    • Cancel All Orders
    • Cancel Order by Client ID
    • Cancel Order by Order ID
    • Margin Update
    • Settlement
    • Funding Payment
    • Order Booked
    • Order Rejected
    • Order Closed
    • Trade Executed
    • Order Fully Filled
    • Move Order
    • Balance Adjustment
  • Orderbook
    • Introduction
    • Orderbook Snapshot
    • Orderbook Update
  • Price Ticks
    • Introduction
    • Price Tick
  • Book Ticker
    • Introduction
    • Book Tick
  1. Price Ticks

Price Tick

You must be subscribed to the PRICE_TICKS channel to receive any price tick related updates. You will only receive updates for instrument_codes you have specified.
When a trade is executed, a price tick is emitted.
{
    "channel_name": "PRICE_TICKS",
    "type": "PRICE_TICK",
    "time": 1732051723847246300,
    "instrument_code": "BTC_EUR",
    "price": "100000",
    "amount": "0.001",
    "volume": "100",
    "best_bid": "10000",
    "best_ask": "100000",
    "taker_side": "BUY"
}
PriceTick

Previous
Introduction
Next
Introduction
Built with