CoolFace
Datasetpublic

humblefool06/bnb-usdt-12h-candles

BNB-USDT 12-Hour Candles Full-history 12-Hour-resolution OHLCV candlestick data for the BNB-USDT trading pair (BNB), from 2017-11-06T00:00:00Z to 2026-08-13T12:00:00Z (6,405 candles, UTC). Covers the pair's entire listed history from first traded candle to the most recent completed daily session. Columns Column Type Description timestamp int64 Candle open time, Unix epoch milliseconds (UTC) open float Open price high float High price low float Low… See the full description on the dataset page: https://huggingface.co/datasets/humblefool06/bnb-usdt-12h-candles.

sourceHugging Facecc-by-4.0updated 1mo agoView on Hugging Face
0likes25downloads
Dataset Card

BNB-USDT 12-Hour Candles

Full-history 12-Hour-resolution OHLCV candlestick data for the BNB-USDT trading pair (BNB), from 2017-11-06T00:00:00Z to 2026-08-13T12:00:00Z (6,405 candles, UTC). Covers the pair's entire listed history from first traded candle to the most recent completed daily session.

Columns

ColumnTypeDescription
timestampint64Candle open time, Unix epoch milliseconds (UTC)
openfloatOpen price
highfloatHigh price
lowfloatLow price
closefloatClose price
volumefloatBase asset volume (BNB)

Each row is one 12h candle. Prices are quoted in USDT.

Data Quality

  • —Timestamps normalized to millisecond precision (UTC), strictly increasing, deduplicated.
  • —OHLC sanity-checked: high >= max(open, close, low) and low <= min(open, close, high).
  • —Missing candles correspond to periods with no traded activity (no candle was produced for those intervals).

Load

python
from datasets import load_dataset

ds = load_dataset("humblefool06/bnb-usdt-12h-candles", split="train")

Or directly from the JSONL file:

python
from datasets import load_dataset

ds = load_dataset("json", data_files="data/bnb_usdt_12h.jsonl", split="train")

License

Released under the Creative Commons Attribution 4.0 International license (CC-BY-4.0). You are free to share and adapt this data for any purpose, including commercially, provided you give appropriate credit. Provided as-is, without warranty of any kind.