Sample data · CC0 / public domain

Sample stock prices (ohlc) CSV.

Daily OHLC bars for eight fictional tickers: open, high, low, close and volume, with the OHLC invariants kept (high ≥ open/close ≥ low). The standard shape for candlestick and finance-chart demos.

Download

Grab a file — or generate a big one.

The small files are static downloads. The large ones are generated in your browser from the same fixed seed, so every copy of stocks-100000.csv on earth is byte-identical — reproducible test data with no 60 MB download.

100 rows · 5 KB 1,000 rows · 50 KB

→ Open this dataset in the dashboard builder  ·  → Open in the CSV editor

Preview

First rows.

datetickeropenhighlowclosevolume
2023-01-02LINN68.5768.9166.0667.377282120
2023-05-12TIDE258.28260.58246.78250.917524038
2023-09-19LINN130.10131.53127.31129.599734689
2024-01-28MEAD27.8628.6527.5028.237732137
2024-06-06MEAD290.20296.27289.49294.217751503
2024-10-14LINN380.86391.91374.84386.625683874
2025-02-22MEAD215.96223.95213.47220.354196473
2025-07-02DRFT186.65190.29186.31186.765739015
Schema

Columns.

columndescription
dateTrading date
tickerFictional ticker symbol
openCoherent OHLC prices (USD)
highCoherent OHLC prices (USD)
lowCoherent OHLC prices (USD)
closeCoherent OHLC prices (USD)
volumeShares traded
About this dataset

What it models.

Every row satisfies high ≥ max(open, close) and low ≤ min(open, close), so candlestick renderers and validation logic behave.

Tickers are fictional (no real-company confusion) and price bands differ per row rather than following a true random walk — fine for charts and parsers, not for backtesting.

Good for: Candlestick / OHLC chart demos · Finance parser test fixtures · Volume histogram examples.

License: CC0 / public domain — use it anywhere, no attribution needed.

Common questions
  • ·

    Are the OHLC values internally consistent?

    Yes: high is always at least the larger of open/close, and low at most the smaller — generated that way by construction, on every row.

  • ·

    Can I use this to test a trading strategy?

    No — prices don't follow a market-like process across rows. It's for charts, parsers and pipelines, not backtests.

  • ·

    What license is this under?

    CC0 (public domain). Use it in tutorials, tests, courses, screenshots and products — no attribution required.

  • ·

    Is the data deterministic?

    Yes — every size is generated from a fixed seed, so the same file is byte-identical for everyone, forever. Reproducible tests, stable teaching materials.

More sample data