Point-in-time and current constituents for major stock indices (CSI 300, CSI 500, S&P 500, NASDAQ-100), packaged as pandas DataFrames.
Project description
Index Constitution
Purpose
This repository was created to make it easier to train quantitative models on major stock indices. Reliable historical index composition data (constituent additions and removals over time) is notoriously hard to obtain — vendors often charge for it, official sources are scattered across PDFs and announcements, and free APIs rarely expose point-in-time membership. Without this data, backtests suffer from survivorship bias and lookahead bias.
This repo collects and normalizes that information into plain CSV files so it can be consumed directly by research and modeling pipelines.
Datasets
| Index | Description | Source |
|---|---|---|
| CSI 300 | Top 300 A-share stocks listed on the Shanghai and Shenzhen exchanges | Official announcements from China Securities Index Co. (csindex.com.cn) |
| CSI 500 | 500 mid-cap A-share stocks listed on the Shanghai and Shenzhen exchanges | Official announcements from China Securities Index Co. (csindex.com.cn) |
| S&P 500 | 500 leading large-cap U.S. companies listed on U.S. exchanges | Wikipedia: List of S&P 500 companies |
| NASDAQ-100 | 100 largest non-financial companies listed on the Nasdaq Stock Market | Wikipedia: NASDAQ-100 |
| Dow Jones Industrial Average | 30 large U.S. blue-chip companies in the Dow Jones Industrial Average | Wikipedia: Dow Jones Industrial Average and Wikipedia: Historical components of the Dow Jones Industrial Average |
Python package
This repo also ships a small Python library that embeds the CSVs and exposes them as pandas DataFrames.
Install:
pip install index-constitution
Usage:
import index_constitution as ic
ic.list_indices() # ['csi300', 'csi500', 'sp500', 'nasdaq100', 'dow30']
ic.latest("sp500") # current S&P 500 members
ic.latest("dow30") # current Dow 30 members
ic.history("csi300") # full CSI 300 history with opt-in/opt-out
ic.constituents_at("sp500", "2015-06-30") # point-in-time membership
ic.is_member("sp500", "AAPL", "2020-01-02") # True
Use Cases
- Check the current constituents of an index
- Reconstruct point-in-time index membership for backtesting
- Avoid survivorship bias when training quantitative models
- Keep a consistent structure for adding more indices later
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file index_constitution-0.3.0.tar.gz.
File metadata
- Download URL: index_constitution-0.3.0.tar.gz
- Upload date:
- Size: 68.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
500923392d1d0b025f8a9880afc49bfc739d2153bfd6d9fc36a41c6cce4a006d
|
|
| MD5 |
4a5d96eaf95e51bda2b9a6c04f59d2ac
|
|
| BLAKE2b-256 |
2cd87474e864e86013ee26f02ffde43c62a88980ce9b6fd5b899af30ba0bebae
|
File details
Details for the file index_constitution-0.3.0-py3-none-any.whl.
File metadata
- Download URL: index_constitution-0.3.0-py3-none-any.whl
- Upload date:
- Size: 85.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29084f8e2ed5cd8a75d1cc19f42c193cc1c8d2e07b94c452fc7a97b943f22a85
|
|
| MD5 |
8f5337171754a476868e9540f2198fbf
|
|
| BLAKE2b-256 |
cc851e6c3dfc365ffe0624a8cec46883268f558a26f381cc0a6c9aa4eadad9cd
|