Skip to main content

Overview

Trade stream provides real-time executions with taker side, min/max prices, volume, and VWAP for each update.

Channel Information

PropertyValue
Channel Nametrade
AuthenticationRequired
Update FrequencyPer trade
Data TypeTrade execution snapshot

Subscribe

{
  "op": "subscribe",
  "args": [
    { "channel": "trade", "symbol": "US500-BTC" },
    { "channel": "trade", "symbol": "GOLD-BTC" }
  ]
}

Response Format

{
  "topic": "trade.GOLD-BTC",
  "type": "snapshot",
  "createdTime": 1640995200000000000,
  "data": {
    "symbol": "GOLD-BTC",
    "takerSide": "buy",
    "minPx": "0.00432400",
    "maxPx": "0.00432500",
    "volume": "1247.85",
    "vwap": "0.00432450",
    "timestamp": 1640995200000000000
  }
}
data
object
Trade execution data
I