thecharttruth commited on
Commit
8fece8f
·
verified ·
1 Parent(s): 1a744fa

Publish ETF dataset

Browse files
Files changed (2) hide show
  1. README.md +2 -22
  2. manifest.json +1 -3
README.md CHANGED
@@ -22,13 +22,11 @@ configs:
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
30
 
31
- This dataset provides cleaned ETF price, metadata, liquidity, and selected market-index tables for educational portfolio-research notebooks, especially the **skfolio Masterclass by The Chart Truth**.
32
 
33
  The goal is to give learners a public, no-login data source that can be loaded in Google Colab and transformed into the return matrices used by skfolio portfolio workflows. It is designed for teaching diversification, liquidity screening, price-to-return transformation, risk, correlation, drawdowns, and allocation research.
34
 
@@ -39,7 +37,6 @@ The goal is to give learners a public, no-login data source that can be loaded i
39
  | `etf_daily_prices.parquet` | 117,864 | 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` | TBD | Selected daily market-index records such as SPX, NDX, and VIX when available | Regime overlays, benchmark context, and volatility exploration |
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,7 +76,6 @@ from datasets import load_dataset
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
@@ -90,7 +86,6 @@ indexes = load_dataset("thecharttruth/etf-data", "indexes", split="train")
90
  | Price rows | 117,864 |
91
  | Metadata rows | 98 |
92
  | Liquidity rows | 95 |
93
- | Index rows | TBD |
94
  | Date range | 2021-05-12 to 2026-05-12 |
95
  | Default file format | Parquet |
96
 
@@ -140,21 +135,6 @@ Some descriptive metadata fields may be blank. Treat metadata as a practical tea
140
  | `lookback_bars`, `lookback_days` | Liquidity lookback settings |
141
  | `history_bars`, `history_start`, `history_end` | Available history summary |
142
 
143
- ### `index_daily_prices.parquet`
144
-
145
- | Column | Meaning |
146
- |---|---|
147
- | `date` | Trading date used for analysis and overlays |
148
- | `timestamp` | Source timestamp value |
149
- | `symbol` | Index symbol, such as `SPX`, `NDX`, or `VIX` when available |
150
- | `asset_type` | Asset label, currently `INDEX` for this file |
151
- | `period` | Source period used by the collector |
152
- | `source_run` | Public run label for traceability |
153
- | `open`, `high`, `low`, `close` | Daily index level fields |
154
- | `value` | Source value field when provided |
155
- | `volume` | Usually empty or zero for indexes |
156
- | `gain_amount`, `gain_percentage` | Source-provided daily change fields |
157
-
158
  ## Intended Use
159
 
160
  This dataset is meant for:
@@ -196,4 +176,4 @@ Redistribution, resale, and commercial use are not permitted without written per
196
 
197
  ## Suggestions
198
 
199
- Learners and researchers may suggest additional ETF or index fields, documentation improvements, or derived teaching tables. Suggestions are evaluated based on educational value, licensing and redistribution limits, privacy, data quality, maintainability, and fit with the cleaned teaching-data scope.
 
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
28
 
29
+ This dataset provides cleaned ETF price, metadata, and liquidity tables for educational portfolio-research notebooks, especially the **skfolio Masterclass by The Chart Truth**.
30
 
31
  The goal is to give learners a public, no-login data source that can be loaded in Google Colab and transformed into the return matrices used by skfolio portfolio workflows. It is designed for teaching diversification, liquidity screening, price-to-return transformation, risk, correlation, drawdowns, and allocation research.
32
 
 
37
  | `etf_daily_prices.parquet` | 117,864 | Daily ETF OHLCV-style price and volume records for 95 ETF symbols | Raw market history used to teach price checks and return conversion |
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
  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
 
86
  | Price rows | 117,864 |
87
  | Metadata rows | 98 |
88
  | Liquidity rows | 95 |
 
89
  | Date range | 2021-05-12 to 2026-05-12 |
90
  | Default file format | Parquet |
91
 
 
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:
 
176
 
177
  ## Suggestions
178
 
179
+ Learners and researchers may suggest additional ETF fields, documentation improvements, or derived teaching tables. Suggestions are evaluated based on educational value, licensing and redistribution limits, privacy, data quality, maintainability, and fit with the cleaned teaching-data scope.
manifest.json CHANGED
@@ -19,7 +19,5 @@
19
  "etf_daily_returns_rows": 117769,
20
  "etf_metadata_rows": 98,
21
  "etf_liquidity_rows": 95,
22
- "index_daily_prices_rows": 5,
23
- "new_etf_daily_price_rows": 117864,
24
- "new_index_daily_price_rows": 5
25
  }
 
19
  "etf_daily_returns_rows": 117769,
20
  "etf_metadata_rows": 98,
21
  "etf_liquidity_rows": 95,
22
+ "new_etf_daily_price_rows": 117864
 
 
23
  }