humblefool06/eth-usdt-1h-candles
ETH-USDT 1-Hour Candles Full-history 1-Hour-resolution OHLCV candlestick data for the ETH-USDT trading pair (Ethereum), from 2017-08-17T04:00:00Z to 2026-08-13T23:00:00Z (78,685 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… See the full description on the dataset page: https://huggingface.co/datasets/humblefool06/eth-usdt-1h-candles.
ETH-USDT 1-Hour Candles
Full-history 1-Hour-resolution OHLCV candlestick data for the ETH-USDT trading pair (Ethereum), from 2017-08-17T04:00:00Z to 2026-08-13T23:00:00Z (78,685 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 1h 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-1h-candles", split="train")Or directly from the JSONL file:
from datasets import load_dataset
ds = load_dataset("json", data_files="data/eth_usdt_1h.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.
