--- license: mit language: - en task_categories: - time-series-forecasting - text-generation - reinforcement-learning tags: - finance - equities - ohlcv - technical-indicators - world-model pretty_name: Twelve Data World Model Dataset size_categories: - 10M **Tip on the in-browser SQL Console**: DuckDB-WASM streams parquet over > HTTPS without local caching, and `1min` configs are millions of rows. Always > project explicit columns (`SELECT symbol, datetime, close, ...`) instead of > `SELECT *`, and prefer the `1day` configs for quick exploration. For real > work, download the parquet and query it from desktop DuckDB. ## Refresh cadence The dataset is rebuilt by an incremental pipeline that: 1. Fetches the trailing window per symbol/timeframe (re-fetches the previous day to capture restatements). 2. Detects splits and dividends and triggers a per-symbol re-backfill when needed (so `close_adj` stays correct historically). 3. Recomputes indicators and macro joins. 4. Re-emits all three views and pushes them here. ## Limitations - US equities only; intraday data is regular-session only (no pre/post). - Macro context is ETF-proxied (e.g. VIXY for VIX, UUP for DXY) — convenient to fetch but not identical to the underlying index. - Intraday history depth (especially `1min`) is bounded by Twelve Data's vendor limits and is much shorter than daily history. Don't assume identical date coverage across timeframes for the same symbol. - The text view is templated, not LLM-generated — it is dense and repetitive by design, intended as a substrate for fine-tuning rather than as human-style prose. ## License MIT. Underlying market data is © Twelve Data and redistributed under their terms; check [twelvedata.com](https://twelvedata.com/) for commercial use. ## Citation ``` @misc{twelvedata-world-model, title = {Twelve Data World Model Dataset}, author = {Twelve Data}, year = {2026}, url = {https://huggingface.co/datasets/twelvedata/financial-world-model} } ```