OHLC
Open High Low Close (Candle) feed for a currency pair and interval period.
The accepted values for interval are 1, 5, 15, 30, 60, 240, 1440, 10080, 21600.
Subscribe with Pusher
Subscribe Request Payload
Examples
Subscribing to NIZAUSDT ohlc with 1 hour interval.
Payload
channel
string
The name of the channel
type
string
Type of event notification
timestamp
string
The timestamp of the start of the interval
data
array
The payload of OHLC data
data.symbol
string
The symbol of the of the currency pair
data.open
decimal
The opening trade price within the interval.
data.high
decimal
The highest trade price within the interval.
data.low
decimal
The lowest trade price within the interval.
data.close
decimal
The last trade price within the interval.
data.trades
integer
Number of trades within the interval.
data.volume
decimal
Total traded volume (in base currency terms) within the interval.
data.vwap
decimal
Volume weighted average trade price within the interval.
data.interval_begin
string
The timestamp of start of the interval. Format: RFC3339
data.interval
integer
The timeframe from the interval in minutes.
Example of the Payload
Last updated