sample_prices.csv is fully synthetic data generated by this project's own
seeded generator (neuroquant.data.generate_synthetic_series). It is included
purely to demonstrate the expected CSV schema for the optional real-data /
upload mode — it is not real market data and carries no third-party
licensing.
- Source: generated locally by NeuroQuantAI (seeds 2024 and 99).
- Date range: 2021-01-01 → 2022-08-11 (420 business days).
- Columns:
date,close,benchmark_close.
To run the lab on your own local historical data, provide a CSV with the same shape (no network access is performed):
date,close,benchmark_close
2021-01-01,100.0,100.0
2021-01-04,100.8,100.2
...
Required: a date/timestamp column and a close column. Optional:
open, high, low, volume, and benchmark_close (enables benchmark
comparison). The loader validates sorted, de-duplicated timestamps and a clean,
positive close column.