Dataset Viewer
Auto-converted to Parquet Duplicate
date
large_stringdate
2000-01-25 00:00:00
2015-12-21 00:00:00
symbol
large_stringclasses
839 values
cik
large_stringclasses
815 values
filing_idx
int32
0
2
filing_text
large_stringlengths
2.26k
16.2M
text_len
int32
2.26k
16.2M
year
int64
2k
2.02k
accession
large_stringlengths
20
20
2000-01-25
A
0001090872
0
"-----BEGIN PRIVACY-ENHANCED MESSAGE-----\nProc-Type: 2001, MIC-CLEAR\nOriginator-Name: webmaster@ww(...TRUNCATED)
392,908
2,000
0000912057-00-002160
2000-01-25
DE
0000315189
0
"QuickLinks\n\nSECURITIES AND EXCHANGE COMMISSIONWashington, D. C. 20549\n\nFORM 10-K 405\n\nANNUAL (...TRUNCATED)
251,999
2,000
0000912057-00-002143
2000-01-26
NCC
0000069970
0
"TABLE OF CONTENTS\n\nTABLE OF CONTENTS\n\n To Our Stockholders \n A Culture of Qual(...TRUNCATED)
382,292
2,000
0000950152-00-000354
2000-01-27
HPQ
0000047217
0
"-----BEGIN PRIVACY-ENHANCED MESSAGE-----\nProc-Type: 2001, MIC-CLEAR\nOriginator-Name: webmaster@ww(...TRUNCATED)
510,254
2,000
0000912057-00-002692
2000-01-27
MEE
0000037748
0
"-----BEGIN PRIVACY-ENHANCED MESSAGE-----\nProc-Type: 2001, MIC-CLEAR\nOriginator-Name: webmaster@ww(...TRUNCATED)
358,303
2,000
0001095811-00-000059
2000-01-27
NOVL
0000758004
0
"-----BEGIN PRIVACY-ENHANCED MESSAGE-----\nProc-Type: 2001, MIC-CLEAR\nOriginator-Name: webmaster@ww(...TRUNCATED)
168,614
2,000
0000950149-00-000093
2000-01-27
ROP
0000882835
0
"-----BEGIN PRIVACY-ENHANCED MESSAGE-----\nProc-Type: 2001, MIC-CLEAR\nOriginator-Name: webmaster@ww(...TRUNCATED)
667,806
2,000
0000931763-00-000160
2000-01-27
TTWO
0000946581
0
"-----BEGIN PRIVACY-ENHANCED MESSAGE-----\nProc-Type: 2001, MIC-CLEAR\nOriginator-Name: webmaster@ww(...TRUNCATED)
487,378
2,000
0000891554-00-000145
2000-01-28
ADI
0000006281
0
"-----BEGIN PRIVACY-ENHANCED MESSAGE-----\nProc-Type: 2001, MIC-CLEAR\nOriginator-Name: webmaster@ww(...TRUNCATED)
499,580
2,000
0000950135-00-000300
2000-01-28
COO
0000711404
0
"-----BEGIN PRIVACY-ENHANCED MESSAGE-----\nProc-Type: 2001, MIC-CLEAR\nOriginator-Name: webmaster@ww(...TRUNCATED)
284,463
2,000
0000950117-00-000158
End of preview. Expand in Data Studio

FINSABER V2 Data

FINSABER V2 Data is the parquet dataset used by the upgraded FINSABER-2 backtesting framework. It contains S&P 500 daily market data, financial news items, and SEC filing text organized by year for reproducible financial strategy research.

Dataset Structure

The dataset is partitioned by modality and year:

price_daily/year=<YYYY>/part-000.parquet
news_items/year=<YYYY>/part-000.parquet
filingk/year=<YYYY>/part-000.parquet
filingq/year=<YYYY>/part-000.parquet

Current local snapshot summary:

Split Years Files Rows Size
price_daily 2000-2025 26 4,901,012 0.13 GB
news_items 2009-2025 17 2,908,022 0.46 GB
filingk 2000-2025 26 17,707 2.96 GB
filingq 2000-2025 26 53,377 3.97 GB

Total size is about 7.52 GB across 95 parquet files.

Columns

price_daily:

  • date, symbol, cik
  • open, high, low, close, adjusted_close
  • volume

news_items:

  • date, symbol, cik
  • item_index, news_text
  • text_len, text_crc32, year

filingk and filingq:

  • date, symbol, cik
  • filing_idx, filing_text
  • text_len, year, accession

Usage

Install the FINSABER-2 package:

pip install finsaber

Download this dataset with huggingface_hub:

from huggingface_hub import snapshot_download

local_dir = snapshot_download(
    repo_id="waylonli/FINSABER-V2-Data",
    repo_type="dataset",
)
print(local_dir)

Point the FINSABER-2 parquet loader at the downloaded snapshot directory. It should contain the price_daily, news_items, filingk, and filingq folders at its root.

Notes

  • Use adjusted prices for split-adjusted price simulation.
  • Use raw volume or dollar volume when applying liquidity constraints.
  • News and filings should be handled with explicit timing assumptions to avoid look-ahead bias.
  • Users are responsible for ensuring their use of source-derived market, news, and filing data complies with applicable licenses and data-provider terms.
Downloads last month
9