Skip to main content
Version: Next

Ticker Subscription

Subscribe to 24-hour rolling window statistics data.

Subscription Format

{symbol}@ticker

Subscribe Request

{
"action": "subscribe",
"streams": ["MSX@ticker"]
}

Push Data Fields

FieldDescription
sTrading pair
o24h open price
h24h high price
l24h low price
cLatest price
v24h volume
q24h amount
n24h number of trades
p24h price change
P24h price change %
w24h weighted average price
EEvent timestamp

Push Example

{
"action": "ticker",
"result": {
"s": "MSX",
"o": "10.00",
"h": "10.50",
"l": "9.80",
"c": "10.25",
"v": "1000000",
"q": "10250000",
"n": 5678,
"p": "0.25",
"P": "2.50",
"w": "10.15",
"E": 1736163000000
}
}