SLV historical data: 1-minute to daily bars, 2006 to 2026

SLV is the iShares Silver Trust; it tracks the price of silver bullion. MarketParquet holds SLV as a US ETF with 1-minute, 5-minute, 30-minute, 1-hour and daily OHLCV bars from 2006-04-28 to 2026-09-10 (5,125 daily bars), split-adjusted (dividends not embedded), as one Parquet file per trading day.

SLV pairs with GLD in precious-metals ratio strategies and is popular for volatility-driven systems.

SLV at a glance

InstrumentiShares Silver Trust (SLV)
Asset classETF
First bar2006-04-28
Latest bar2026-09-10
Daily bars5,125
Timeframes1-minute, 5-minute, 30-minute, 1-hour, daily
Adjustmentsplit-adjusted (dividends not embedded)
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 ETF symbol

Sample: SLV 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:3058.3558.4258.1358.161,288,054
10:0058.1758.2057.8858.08774,018
10:3058.0658.4657.9958.44585,076
11:0058.4358.5958.2758.27644,209
11:3058.2858.5858.2358.31538,004
12:0058.3058.3658.2358.30177,651
12:3058.3158.3258.1658.24163,157
13:0058.2458.2658.0858.25245,210

Open the full 2026-09-16 preview for SLV

Corporate actions in the changelog

No split adjustment for SLV appears in the published changelog, which lists every repair applied since it began. Earlier splits are already reflected in the archive: SLV prices are split-adjusted (dividends not embedded), so bars before any historical split sit on today's share basis. Dividends are deliberately not embedded; see data quality.

Load SLV 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

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

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

  import polars as pl

  bars = (
      pl.scan_parquet("by_date/etf_5min/2025/*.parquet")
        .filter(pl.col("symbol") == "SLV")
        .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 ETF files

TimeframeFilesDate range
1-Min6,7172000-01-03 to 2026-09-16
5-Min6,7172000-01-03 to 2026-09-16
30-Min6,7172000-01-03 to 2026-09-16
1-Hour6,7172000-01-03 to 2026-09-16
Daily6,7172000-01-03 to 2026-09-16

Every file holds all ETF symbols for that day, SLV included.

Get SLV data

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

> Download the free daily sample > See pricing

FAQ

Is SLV history split-adjusted?

Yes. Prices are split-adjusted so the series is continuous across splits; dividends are not embedded, which keeps the bars equal to the prices that actually traded.

How far back does SLV go?

The first SLV bar in the archive is dated 2006-04-28 and the newest is 2026-09-10. 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 SLV?

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

Related

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

Other ETF pages: SPY · QQQ · IWM · DIA · TLT · GLD · XLF · ARKK · TQQQ · SQQQ · SOXL · UVXY · VXX