market.tickerWSS
Endpoint
wss://api.bitkub.com/websocket-api/market.tickerDescription
Real-time ticker data. Re-calculated on every order creation, cancellation, and fulfillment.
Response
{
"stream": "market.ticker.thb_btc",
"id": 1,
"last": 2883194.85,
"lowestAsk": 2883194.9,
"lowestAskSize": 0.0070947,
"highestBid": 2881000.31,
"highestBidSize": 0.00470253,
"change": 60622.33,
"percentChange": 2.15,
"baseVolume": 89.25334259,
"quoteVolume": 256768588.16,
"isFrozen": 0,
"high24hr": 2916959.99,
"low24hr": 2819009.05,
"open": 2822572.52,
"close": 2883194.85
}Field Descriptions
| Field | Type | Description |
|---|---|---|
| stream | string | Stream name |
| id | int | Symbol ID |
| last | float | Latest price |
| lowestAsk | float | Lowest asking price |
| lowestAskSize | float | Amount of the lowest asking order |
| highestBid | float | Highest bidding price |
| highestBidSize | float | Amount of the highest bidding order |
| change | float | Price change compared to open |
| percentChange | float | Price change in percent |
| baseVolume | float | Amount of crypto traded in 24h |
| quoteVolume | float | Amount of fiat traded in 24h |
| isFrozen | int | Symbol trade status (0 = active) |
| high24hr | float | Highest price in last 24 hours |
| low24hr | float | Lowest price in last 24 hours |
| open | float | Open price |
| close | float | Close price |