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
    • 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
channel_name
enum<string> 
required
Allowed value:
PRICE_TICKS
type
enum<string> 
required
Allowed value:
PRICE_TICK
time
integer 
required
Time in nanoseconds the trade was executed
instrument_code
string 
required
price
string 
required
amount
string 
required
volume
string 
required
best_bid
string 
required
best_ask
string 
required
taker_side
enum<string> 
required
Allowed values:
BUYSELL
Previous
Introduction
Next
Introduction
Built with