humblefool06/eth-usdt-12h-candles
ETH-USDT 12-Hour Candles Full-history 12-Hour-resolution OHLCV candlestick data for the ETH-USDT trading pair (Ethereum), from 2017-08-17T00:00:00Z to 2026-08-13T12:00:00Z (6,567 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… See the full description on the dataset page: https://huggingface.co/datasets/humblefool06/eth-usdt-12h-candles.
ETH-USDT 12-Hour Candles
Full-history 12-Hour-resolution OHLCV candlestick data for the ETH-USDT trading pair (Ethereum), from 2017-08-17T00:00:00Z to 2026-08-13T12:00:00Z (6,567 candles, UTC). Covers the pair's entire listed history from first traded candle to the most recent completed daily session.
Columns
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)andlow <= min(open, close, high). - Missing candles correspond to periods with no traded activity (no candle was produced for those intervals).
Load
from datasets import load_dataset
ds = load_dataset("humblefool06/eth-usdt-12h-candles", split="train")Or directly from the JSONL file:
from datasets import load_dataset
ds = load_dataset("json", data_files="data/eth_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.
