BTC historical data: 1-minute to daily bars, 2017 to 2026

BTC is the Bitcoin futures (CME); it tracks the CME CF Bitcoin Reference Rate. MarketParquet holds BTC as a futures contract with 1-minute, 5-minute, 30-minute, 1-hour and daily OHLCV bars from 2017-12-22 to 2026-09-11 (2,197 daily bars), continuous contract, ratio-adjusted at each roll, as one Parquet file per trading day.

BTC futures give regulated, exchange-traded bitcoin history with sessions and settlement, useful for crypto strategies tested on futures rather than spot.

BTC at a glance

InstrumentBitcoin futures (CME) (BTC)
Asset classFutures (continuous contract)
First bar2017-12-22
Latest bar2026-09-11
Daily bars2,197
Timeframes1-minute, 5-minute, 30-minute, 1-hour, daily
Adjustmentcontinuous contract, ratio-adjusted at each roll
TimezoneUS/Eastern bar open time; intraday files include pre-market and after-hours bars where available
FormatApache Parquet, one file per trading day containing every Futures symbol

Sample: BTC 30-minute bars on 2026-09-16

The first regular-session bars from the newest 30-minute file, read live from the archive. Prices are the values as published; the full session has many more rows.

timestampopenhighlowclosevolume
09:3075710.0075915.0075540.0075590.00417
10:0075625.0075815.0075415.0075805.00299
10:3075805.0075820.0075520.0075705.00213
11:0075695.0075820.0075555.0075665.00307
11:3075620.0075960.0075540.0075795.00272
12:0075805.0075900.0075635.0075810.00209
12:3075810.0075850.0075700.0075815.00201
13:0075770.0075835.0075660.0075745.00205

Open the full 2026-09-16 preview for BTC

Corporate actions in the changelog

BTC is a continuous contract: each roll is ratio-adjusted so the series has no artificial gaps between expiries. There are no splits to record; the continuous futures page explains the roll method.

Load BTC in Python

Files are partitioned by trading day, so pulling one symbol means filtering across files. DuckDB reads the whole daily history in one statement; union_by_name and the COALESCE cover the older daily files, which carry a timestamp column where newer ones carry date:

  import duckdb

  btc = duckdb.sql("""
      SELECT COALESCE(date, CAST(timestamp AS DATE)) AS date,
             open, high, low, close, volume
      FROM read_parquet('by_date/futures_daily/*/*.parquet', union_by_name=true)
      WHERE symbol = 'BTC'
      ORDER BY 1
  """).df()

Intraday files all share one schema, so Polars can scan a year of 5-minute bars lazily and keep only BTC:

  import polars as pl

  bars = (
      pl.scan_parquet("by_date/futures_5min/2025/*.parquet")
        .filter(pl.col("symbol") == "BTC")
        .select(["timestamp", "open", "high", "low", "close", "volume"])
        .sort("timestamp")
        .collect()
  )

Timestamps are US/Eastern bar open times. The Polars guide, the DuckDB guide and the backtrader guide take it from here: multi-year loads, resampling and feeding a backtest engine.

Available Futures files

TimeframeFilesDate range
1-Min5,8542007-12-31 to 2026-09-16
5-Min5,8542007-12-31 to 2026-09-16
30-Min5,8542007-12-31 to 2026-09-16
1-Hour5,8542007-12-31 to 2026-09-16
Daily4,8692007-12-31 to 2026-09-16

Every file holds all Futures symbols for that day, BTC included.

Get BTC data

Free: a free account can download roughly the last year of daily Futures files, which include BTC, from the daily browse page or by API key. Complete Archive: every timeframe and the full history back to 2017-12-22 for BTC and every other symbol, $79 one-time.

> Download the free daily sample > See pricing

FAQ

Is BTC history split-adjusted?

Futures do not split. BTC is a continuous, ratio-adjusted series, so returns are correct across contract rolls.

How far back does BTC go?

The first BTC bar in the archive is dated 2017-12-22 and the newest is 2026-09-11. New sessions are added the same night, typically by midnight ET.

What timezone are the intraday bars in?

US/Eastern. Regular hours are 9:30 AM to 4:00 PM ET; 1-minute files also carry pre-market from 4:00 AM and after-hours to 8:00 PM where trades occurred.

Can I download only BTC?

Files are per day, not per symbol, so you download the daily or intraday files for the dates you need and filter on symbol == "BTC". A year of daily files is small; the snippets above do the filtering in one pass.

Related

Futures data hub · browse Futures daily · all symbol pages · pricing

Other Futures pages: ES · NQ · MES · MNQ · YM · RTY · CL · MCL · GC · MGC · SI · NG · ZN