Add SPX VIX NDX index history
Browse files- README.md +24 -3
- etf_daily_prices.parquet +2 -2
- index_daily_prices.parquet +3 -0
- instrument_metadata.parquet +2 -2
- manifest.json +12 -6
README.md
CHANGED
|
@@ -22,6 +22,8 @@ configs:
|
|
| 22 |
data_files: "instrument_metadata.parquet"
|
| 23 |
- config_name: liquidity
|
| 24 |
data_files: "etf_liquidity_365d.parquet"
|
|
|
|
|
|
|
| 25 |
---
|
| 26 |
|
| 27 |
# skfolio Masterclass ETF Teaching Data
|
|
@@ -34,9 +36,10 @@ The goal is to give learners a public, no-login data source that can be loaded i
|
|
| 34 |
|
| 35 |
| File | Rows | What it contains | Main teaching use |
|
| 36 |
|---|---:|---|---|
|
| 37 |
-
| `etf_daily_prices.parquet` | 117,
|
| 38 |
| `instrument_metadata.parquet` | 98 | Symbol-level metadata and trading-status fields | Universe inspection, labeling, and practical data-quality checks |
|
| 39 |
| `etf_liquidity_365d.parquet` | 95 | Average and median volume and dollar-volume rankings | Liquidity screening and realistic universe design |
|
|
|
|
| 40 |
| `manifest.json` | 1 | Public snapshot metadata and row counts | Lightweight audit trail for notebooks and examples |
|
| 41 |
|
| 42 |
The dataset intentionally does **not** include raw API responses, account data, balances, holdings, transactions, orders, credentials, or trading instructions.
|
|
@@ -76,6 +79,7 @@ from datasets import load_dataset
|
|
| 76 |
prices = load_dataset("thecharttruth/etf-data", "prices", split="train")
|
| 77 |
metadata = load_dataset("thecharttruth/etf-data", "metadata", split="train")
|
| 78 |
liquidity = load_dataset("thecharttruth/etf-data", "liquidity", split="train")
|
|
|
|
| 79 |
```
|
| 80 |
|
| 81 |
## Current Snapshot
|
|
@@ -83,10 +87,12 @@ liquidity = load_dataset("thecharttruth/etf-data", "liquidity", split="train")
|
|
| 83 |
| Item | Value |
|
| 84 |
|---|---:|
|
| 85 |
| ETF symbols with price history | 95 |
|
| 86 |
-
| Price rows | 117,
|
| 87 |
| Metadata rows | 98 |
|
| 88 |
| Liquidity rows | 95 |
|
| 89 |
-
|
|
|
|
|
|
|
|
| 90 |
| Default file format | Parquet |
|
| 91 |
|
| 92 |
The metadata table can contain symbols that are not present in the current price table. That is useful for teaching real-world data checks: not every instrument discovered by a data source is automatically suitable for a clean portfolio universe.
|
|
@@ -135,6 +141,21 @@ Some descriptive metadata fields may be blank. Treat metadata as a practical tea
|
|
| 135 |
| `lookback_bars`, `lookback_days` | Liquidity lookback settings |
|
| 136 |
| `history_bars`, `history_start`, `history_end` | Available history summary |
|
| 137 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 138 |
## Intended Use
|
| 139 |
|
| 140 |
This dataset is meant for:
|
|
|
|
| 22 |
data_files: "instrument_metadata.parquet"
|
| 23 |
- config_name: liquidity
|
| 24 |
data_files: "etf_liquidity_365d.parquet"
|
| 25 |
+
- config_name: indexes
|
| 26 |
+
data_files: "index_daily_prices.parquet"
|
| 27 |
---
|
| 28 |
|
| 29 |
# skfolio Masterclass ETF Teaching Data
|
|
|
|
| 36 |
|
| 37 |
| File | Rows | What it contains | Main teaching use |
|
| 38 |
|---|---:|---|---|
|
| 39 |
+
| `etf_daily_prices.parquet` | 117,959 | Daily ETF OHLCV-style price and volume records for 95 ETF symbols | Raw market history used to teach price checks and return conversion |
|
| 40 |
| `instrument_metadata.parquet` | 98 | Symbol-level metadata and trading-status fields | Universe inspection, labeling, and practical data-quality checks |
|
| 41 |
| `etf_liquidity_365d.parquet` | 95 | Average and median volume and dollar-volume rankings | Liquidity screening and realistic universe design |
|
| 42 |
+
| `index_daily_prices.parquet` | 3,784 | Daily index history for SPX, VIX, and NDX | Market-regime context and benchmark/risk discussion |
|
| 43 |
| `manifest.json` | 1 | Public snapshot metadata and row counts | Lightweight audit trail for notebooks and examples |
|
| 44 |
|
| 45 |
The dataset intentionally does **not** include raw API responses, account data, balances, holdings, transactions, orders, credentials, or trading instructions.
|
|
|
|
| 79 |
prices = load_dataset("thecharttruth/etf-data", "prices", split="train")
|
| 80 |
metadata = load_dataset("thecharttruth/etf-data", "metadata", split="train")
|
| 81 |
liquidity = load_dataset("thecharttruth/etf-data", "liquidity", split="train")
|
| 82 |
+
indexes = load_dataset("thecharttruth/etf-data", "indexes", split="train")
|
| 83 |
```
|
| 84 |
|
| 85 |
## Current Snapshot
|
|
|
|
| 87 |
| Item | Value |
|
| 88 |
|---|---:|
|
| 89 |
| ETF symbols with price history | 95 |
|
| 90 |
+
| Price rows | 117,959 |
|
| 91 |
| Metadata rows | 98 |
|
| 92 |
| Liquidity rows | 95 |
|
| 93 |
+
| Index rows | 3,784 |
|
| 94 |
+
| Index symbols | SPX, VIX, NDX |
|
| 95 |
+
| Date range | 2021-05-12 to 2026-05-13 |
|
| 96 |
| Default file format | Parquet |
|
| 97 |
|
| 98 |
The metadata table can contain symbols that are not present in the current price table. That is useful for teaching real-world data checks: not every instrument discovered by a data source is automatically suitable for a clean portfolio universe.
|
|
|
|
| 141 |
| `lookback_bars`, `lookback_days` | Liquidity lookback settings |
|
| 142 |
| `history_bars`, `history_start`, `history_end` | Available history summary |
|
| 143 |
|
| 144 |
+
### `index_daily_prices.parquet`
|
| 145 |
+
|
| 146 |
+
| Column | Meaning |
|
| 147 |
+
|---|---|
|
| 148 |
+
| `date` | Trading date used for analysis and pivoting |
|
| 149 |
+
| `timestamp` | Source timestamp value |
|
| 150 |
+
| `symbol` | Index ticker symbol, currently SPX, VIX, and NDX |
|
| 151 |
+
| `asset_type` | Asset label, currently `INDEX` for this file |
|
| 152 |
+
| `period` | Source period used by the collector |
|
| 153 |
+
| `source_run` | Public run label for traceability |
|
| 154 |
+
| `open`, `high`, `low`, `close` | Daily index level fields |
|
| 155 |
+
| `value` | Source value field when provided |
|
| 156 |
+
| `volume` | Daily volume field when provided by the source |
|
| 157 |
+
| `gain_amount`, `gain_percentage` | Source-provided daily change fields |
|
| 158 |
+
|
| 159 |
## Intended Use
|
| 160 |
|
| 161 |
This dataset is meant for:
|
etf_daily_prices.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:762ae058841143e93c6eda188667fa8245d90b75561efd66fbbe6d074498ebde
|
| 3 |
+
size 3199032
|
index_daily_prices.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c4b1ada3d4fffec45811fdb6de219e3c84f52700ac4614996f68792fa9e62b9
|
| 3 |
+
size 190686
|
instrument_metadata.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61816259163e10531402ee29bcf382321728aff79ece2320d2c9cb75b798c276
|
| 3 |
+
size 8334
|
manifest.json
CHANGED
|
@@ -1,23 +1,29 @@
|
|
| 1 |
{
|
| 2 |
"dataset_name": "skfolio Masterclass ETF Teaching Data",
|
| 3 |
"dataset_repo_id": "thecharttruth/etf-data",
|
| 4 |
-
"processed_at_utc": "2026-05-
|
| 5 |
"source_run_labels": [
|
| 6 |
"20260512T172023Z_initial_backfill",
|
|
|
|
| 7 |
"20260512T184432Z_scheduled_daily",
|
| 8 |
-
"20260512T184834Z_scheduled_daily"
|
|
|
|
|
|
|
| 9 |
],
|
| 10 |
"published_files": [
|
| 11 |
"etf_daily_prices.parquet",
|
| 12 |
"instrument_metadata.parquet",
|
| 13 |
"etf_liquidity_365d.parquet",
|
|
|
|
| 14 |
"manifest.json"
|
| 15 |
],
|
| 16 |
"mode": "full",
|
| 17 |
"update_start_date": null,
|
| 18 |
-
"etf_daily_prices_rows":
|
| 19 |
-
"etf_daily_returns_rows":
|
| 20 |
"etf_metadata_rows": 98,
|
| 21 |
"etf_liquidity_rows": 95,
|
| 22 |
-
"
|
| 23 |
-
|
|
|
|
|
|
|
|
|
| 1 |
{
|
| 2 |
"dataset_name": "skfolio Masterclass ETF Teaching Data",
|
| 3 |
"dataset_repo_id": "thecharttruth/etf-data",
|
| 4 |
+
"processed_at_utc": "2026-05-14T06:18:21+00:00",
|
| 5 |
"source_run_labels": [
|
| 6 |
"20260512T172023Z_initial_backfill",
|
| 7 |
+
"20260514T061439Z_index_initial_backfill_v2",
|
| 8 |
"20260512T184432Z_scheduled_daily",
|
| 9 |
+
"20260512T184834Z_scheduled_daily",
|
| 10 |
+
"20260512T203007Z_scheduled_daily",
|
| 11 |
+
"20260513T203004Z_scheduled_daily"
|
| 12 |
],
|
| 13 |
"published_files": [
|
| 14 |
"etf_daily_prices.parquet",
|
| 15 |
"instrument_metadata.parquet",
|
| 16 |
"etf_liquidity_365d.parquet",
|
| 17 |
+
"index_daily_prices.parquet",
|
| 18 |
"manifest.json"
|
| 19 |
],
|
| 20 |
"mode": "full",
|
| 21 |
"update_start_date": null,
|
| 22 |
+
"etf_daily_prices_rows": 117959,
|
| 23 |
+
"etf_daily_returns_rows": 117864,
|
| 24 |
"etf_metadata_rows": 98,
|
| 25 |
"etf_liquidity_rows": 95,
|
| 26 |
+
"index_daily_prices_rows": 3784,
|
| 27 |
+
"new_etf_daily_price_rows": 117959,
|
| 28 |
+
"new_index_daily_price_rows": 3784
|
| 29 |
+
}
|