artefactory/ledger-market-sentiment
LEDGER Market Sentiment Prediction Data Data used for the market sentiment prediction case study in the LEDGER paper, linking CEO-letter rhetoric to EPS surprises and post-publication market reactions. Dataset Description This dataset supports research on whether the rhetoric in corporate annual report CEO letters carries signal about future fundamentals and market reaction. It covers six highly liquid industries (specialty chemicals, auto parts, packaged foods… See the full description on the dataset page: https://huggingface.co/datasets/artefactory/ledger-market-sentiment.
LEDGER Market Sentiment Prediction Data
Data used for the market sentiment prediction case study in the LEDGER paper, linking CEO-letter rhetoric to EPS surprises and post-publication market reactions.
Dataset Description
This dataset supports research on whether the rhetoric in corporate annual report CEO letters carries signal about future fundamentals and market reaction. It covers six highly liquid industries (specialty chemicals, auto parts, packaged foods, oil & gas E&P, oil & gas equipment & services, and mortgage REITs) spanning fiscal years 2017–2022.
Configs
Schema
letters
eps_surprise
stock_prices
industry_indicators
Usage
from datasets import load_dataset
# Load CEO letters with sentiment
letters = load_dataset("artefactory/LEDGER-market-sentiment", "letters")
# Load EPS surprises
eps = load_dataset("artefactory/LEDGER-market-sentiment", "eps_surprise")
# Load daily stock prices
prices = load_dataset("artefactory/LEDGER-market-sentiment", "stock_prices")
# Load industry indicators
indicators = load_dataset("artefactory/LEDGER-market-sentiment", "industry_indicators")
# Example: filter to positive-sentiment letters
positive_letters = letters["train"].filter(lambda x: x["sentiment"] == "positive")Industries Covered
- Basic Materials / Specialty Chemicals
- Consumer Cyclical / Auto Parts
- Consumer Defensive / Packaged Foods
- Energy / Oil & Gas E&P
- Energy / Oil & Gas Equipment & Services
- Real Estate / REIT - Mortgage
Citation key
If you use LEDGER datasets and / or code ressources, please consider citing our work with:
@misc{moslonka2026ledgerlongcontextbenchmarkcorporate,
title={LEDGER: A Long-Context Benchmark of Corporate Annual Reports for Grounded Financial Retrieval and Extraction},
author={Charles Moslonka and Amaury de Vitry and Arthur Garnier and Hicham Randrianarivo and Emmanuel Malherbe},
year={2026},
eprint={2606.13100},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2606.13100},
}License
Code: MIT | Data: CC-BY-4.0
Links
- Collection: artefactory/ledger
- Code: github.com/artefactory/LEDGER
- ArXiv https://arxiv.org/abs/2606.13100
