reCluster
  • Welcome
    • reCluster
    • Registration
    • Frequently Asked Questions
    • Roadmap
  • Features
    • Midprice
    • Tickers
    • Trades
    • OHLC
    • Volume Weighted Average Price
  • Integration
    • General Information
    • Python
    • Node.js
    • Golang
Powered by GitBook
On this page
  1. Features

OHLC

Subscribe to the aggregated OHLC stream

Request Example


{
  "topic": "klines",
  "symbol": "BTCUSDT",
  "action": "subscribe",
}

Response Parameters

Parameters
Type
Comments

topic

string

Topic name

symbol

string

Topic symbol

open

string

Open price

high

string

High price

low

string

Low price

close

string

Close price

volume

string

Volume

ts

float

Timestamp

Response Example


{
  "topic": "klines",
  "symbol": "BTCUSDT",
  "open": "104000.2",
  "high": "104000.2",
  "low": "104000.2",
  "close": "104000.2",
  "lastPrice": "23123.45",
  "volume": 123.456,
  "ts": 1738335121542,
}

PreviousTradesNextVolume Weighted Average Price

Last updated 3 months ago