Overview
The trade stream provides real-time executions with taker side, minimum and maximum prices, volume, and VWAP for each update.Channel information
Subscribe
Response format
object
Trade execution data
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
{
"op": "subscribe",
"args": [
{ "channel": "trade", "symbol": "US500-BTC" },
{ "channel": "trade", "symbol": "GOLD-BTC" },
{ "channel": "trade", "symbol": "USDT-BTC" }
]
}
{
"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
}
}
Stream real-time trade executions with taker side, price range, volume, and VWAP per symbol.
| Property | Value |
|---|---|
| Channel Name | trade |
| Authentication | Required |
| Update Frequency | Per trade |
| Data Type | Trade execution snapshot |
{
"op": "subscribe",
"args": [
{ "channel": "trade", "symbol": "US500-BTC" },
{ "channel": "trade", "symbol": "GOLD-BTC" },
{ "channel": "trade", "symbol": "USDT-BTC" }
]
}
{
"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
}
}
Was this page helpful?