thomaswmitch/kalshi-prediction-markets-betting
Kalshi Prediction Markets — Trades High-volume trade-level data from Kalshi prediction markets spanning Aug 2023–Aug 2025, suitable for market microstructure, liquidity, and price-impact analysis. Rows: ~5.08M trades (single split)Schema stability: stablePrivacy: public market data, no PII Dataset Structure Split train — all trades Features (columns) name dtype description trade_id string Unique trade identifier… See the full description on the dataset page: https://huggingface.co/datasets/thomaswmitch/kalshi-prediction-markets-betting.
Kalshi Prediction Markets — Trades
High-volume trade-level data from Kalshi prediction markets spanning Aug 2023–Aug 2025, suitable for market microstructure, liquidity, and price-impact analysis.
Rows: ~5.08M trades (single split) Schema stability: stable Privacy: public market data, no PII
Dataset Structure
Split
- train — all trades
Features (columns)
Note:yes_price/no_priceare stored as integers. If your downstream pipeline expects dollars, convert as needed (e.g., divide by100if prices are in cents).
Usage
Load with datasets
from datasets import load_dataset
ds = load_dataset("thomaswmitch/kalshi-prediction-markets-trades") # update to your repo name if different
print(ds)
print(ds["train"].features)
