satang-api
  • Introduction
  • Authentication
  • Sign Request Example
    • Javascript
    • Python
    • Golang
  • APIs
    • Public
      • Orders
    • Private
      • Deposits
      • Crypto Deposits
      • User/Wallet
      • Orders
    • Portal (Obsoleted)
  • APIs V3
    • General information
      • Kline Chart Interval
      • Authorization
        • Endpoint Security types
    • Public
      • Exchange Information
      • Depth
      • Kline/Candlestick data
      • Ticker
      • Aggregate trade
    • Private
      • Orders
      • Listen Key
    • Websockets
      • General WSS information
      • User Data Streams
      • Streams
        • Aggregate trade
        • Depth
        • Kline
        • Ticker
  • Satang.pro SDK
Powered by GitBook
On this page

Was this helpful?

  1. APIs V3
  2. Websockets
  3. Streams

Aggregate trade

Stream Name: <pair>@aggTrade

Update Speed: Real-time

{
  "e": "aggTrade",    // Event type
  "E": 1591838631614, // Event time
  "s": "btc_thb",     // Symbol
  "a": 1356597,       // Aggregate trade ID
  "p": "306888",      // Price
  "q": "0.00066591",  // Quantity
  "f": 1356597,       // First trade ID
  "l": 1356597,       // Last trade ID
  "T": 1591838631552, // Trade time
  "m": false,         // Is the buyer the market maker?
  "M": true           // Ignore
}

PreviousStreamsNextDepth

Last updated 4 years ago

Was this helpful?