Is June 30, 2026 missing anywhere else? The same day across five date-keyed datasets
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-07-26, from SEC EDGAR Index Gap: the Missing Month-Ends.
| dataset | jun29 | jun30 |
|---|---|---|
| SEC filing index (filings) | 4439 | 31 |
| Minute bars (tickers) | 11903 | 11982 |
| Dividends (ex-div records) | 449 | 704 |
| News articles | 157 | 215 |
| Treasury curve rows | 1 | 1 |
- Rows × columns
- 5 × 3
- 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 |
|---|---|---|---|
dataset |
text | 5 distinct values | |
jun29 |
number | 1 to 11,903 | |
jun30 |
number | 1 to 11,982 |
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
SELECT dataset, jun29, jun30 FROM (
SELECT 'SEC filing index (filings)' AS dataset,
(SELECT uniqExact(accession_number) FROM global_markets.stocks_sec_edgar_index WHERE filing_date = toDate('2026-06-29')) AS jun29,
(SELECT uniqExact(accession_number) FROM global_markets.stocks_sec_edgar_index WHERE filing_date = toDate('2026-06-30')) AS jun30, 1 AS ord
UNION ALL SELECT 'Minute bars (tickers)',
(SELECT uniqExact(ticker) FROM global_markets.delayed_stocks_minute_aggs WHERE window_start >= toDateTime('2026-06-29 04:00:00') AND window_start < toDateTime('2026-06-30 04:00:00')),
(SELECT uniqExact(ticker) FROM global_markets.delayed_stocks_minute_aggs WHERE window_start >= toDateTime('2026-06-30 04:00:00') AND window_start < toDateTime('2026-07-01 04:00:00')), 2
UNION ALL SELECT 'Dividends (ex-div records)',
(SELECT count() FROM global_markets.stocks_dividends WHERE ex_dividend_date = toDate('2026-06-29')),
(SELECT count() FROM global_markets.stocks_dividends WHERE ex_dividend_date = toDate('2026-06-30')), 3
UNION ALL SELECT 'News articles',
(SELECT count() FROM global_markets.stocks_news WHERE toDate(published_utc) = toDate('2026-06-29')),
(SELECT count() FROM global_markets.stocks_news WHERE toDate(published_utc) = toDate('2026-06-30')), 4
UNION ALL SELECT 'Treasury curve rows',
(SELECT count() FROM global_markets.treasury_yields WHERE date = toDate('2026-06-29')),
(SELECT count() FROM global_markets.treasury_yields WHERE date = toDate('2026-06-30')), 5
) ORDER BY ord
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 analysisSEC EDGAR Index Gap: the Missing Month-Ends
Form types on the gap day (June 30, 2026) against the trading day before it
ranking 14×3
→
When each day's rows actually landed in the warehouse, June 26 to the front edge
ranking 10×3
→
Filing counts on the last weekday of each 2026 month, with prior-year weekday month-ends as controls
ranking 8×3
→
Every weekday month-end since 2020: filings indexed on the month's last calendar day
table 55×2
→
Every weekday month-end since 2020 with fewer than 1,000 filings: count, companies touched, and the neighbouring days' average
table 6×6
→
Status receipt: the March and April boundary days, their arrival times, and their counts as of this run
scalar 1×6
→
See all 2,170 queries →