The current state of the release cycle: the newest print on file and the settlement still pending
Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-08-22, from When Is Short Interest Released?.
latest settlement on file
2026-07-31
latest label
Jul 31, 2026
latest day of month
31
securities in that print
22,339
its publication lag days
11
rows after latest
0
- Rows × columns
- 1 × 6
- Period covered
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
latest_settlement_on_file |
date | 2026-07-31 | |
latest_label |
text | 1 distinct value (Jul 31, 2026) | |
latest_day_of_month |
number | every row is 31 | |
securities_in_that_print |
number | every row is 22,339 | |
its_publication_lag_days |
number | every row is 11 | |
rows_after_latest |
number | every row is 0 |
Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.
the exact SQL behind every number
WITH (SELECT max(settlement_date) FROM global_markets.stocks_short_interest) AS latest
SELECT toString(latest) AS latest_settlement_on_file,
formatDateTime(latest, '%b %e, %Y') AS latest_label,
toDayOfMonth(latest) AS latest_day_of_month,
(SELECT count() FROM global_markets.stocks_short_interest
WHERE settlement_date = latest) AS securities_in_that_print,
(SELECT dateDiff('day', latest, toDate(min(_ingest_time))) FROM global_markets.stocks_short_interest
WHERE settlement_date = latest) AS its_publication_lag_days,
(SELECT count() FROM global_markets.stocks_short_interest
WHERE settlement_date > latest) AS rows_after_latest
Run your own version of this
The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.
More from this analysisWhen Is Short Interest Released?
The publication lag in one row: fastest, median and slowest across incrementally-delivered settlements
scalar 1×4
→
The short interest release schedule: recent FINRA settlement dates and names reported
series 16×2
→
Day-of-month and the gap between consecutive settlement dates: the twice-monthly cadence
series 16×3
→
Measured publication lag: settlement date vs the day the file first arrived here
series 10×3
→
The pipeline lag in one row: plus the bulk backfill these figures deliberately exclude
scalar 1×6
→
GME days to cover: as reported in the file, and recomputed on the volume that traded while the print was pending
scalar 1×8
→
See all 2,170 queries →