Ex-dividends, splits, listings, news, and the July 28 SEC filing mix
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-01, from Market Recap: July 28, 2026, The Day in Numbers.
ex dividend records
147
reverse splits
3
forward splits
0
listings
2
news articles
161
news publishers
2
top news ticker
MSFT
top news n
9
fil total
5,915
fil filers
2,898
fil form4
856
fil 8k
315
fil 424b2
900
fil 10q
100
- Rows × columns
- 1 × 14
- 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 |
|---|---|---|---|
ex_dividend_records |
number | every row is 147 | |
reverse_splits |
number | every row is 3 | |
forward_splits |
number | every row is 0 | |
listings |
number | every row is 2 | |
news_articles |
number | every row is 161 | |
news_publishers |
number | every row is 2 | |
top_news_ticker |
text | 1 distinct value (MSFT) | |
top_news_n |
number | every row is 9 | count |
fil_total |
number | every row is 5,915 | |
fil_filers |
number | every row is 2,898 | |
fil_form4 |
number | every row is 856 | |
fil_8k |
number | every row is 315 | |
fil_424b2 |
number | every row is 900 | |
fil_10q |
number | every row is 100 |
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 (argMax(t, (n, t)), max(n))
FROM (
SELECT t, count() AS n
FROM (
SELECT arrayJoin(tickers) AS t
FROM global_markets.stocks_news
WHERE published_utc >= '2026-07-28 04:00:00' AND published_utc < '2026-07-29 04:00:00'
)
WHERE t != 'SPCX'
GROUP BY t
)
) AS top_news,
(
SELECT (count(), uniqExact(cik), countIf(form_type = '4'), countIf(form_type = '8-K'), countIf(form_type = '424B2'), countIf(form_type = '10-Q'))
FROM global_markets.stocks_sec_edgar_index
WHERE filing_date = '2026-07-28'
) AS fil
SELECT
(SELECT count() FROM global_markets.stocks_dividends WHERE ex_dividend_date = '2026-07-28') AS ex_dividend_records,
(SELECT countIf(toFloat64(split_from) > toFloat64(split_to)) FROM global_markets.stocks_splits WHERE execution_date = '2026-07-28') AS reverse_splits,
(SELECT countIf(toFloat64(split_to) > toFloat64(split_from)) FROM global_markets.stocks_splits WHERE execution_date = '2026-07-28') AS forward_splits,
(SELECT count() FROM global_markets.stocks_ipos WHERE listing_date = '2026-07-28') AS listings,
(SELECT count() FROM global_markets.stocks_news WHERE published_utc >= '2026-07-28 04:00:00' AND published_utc < '2026-07-29 04:00:00') AS news_articles,
(SELECT uniqExact(JSONExtractString(publisher, 'name')) FROM global_markets.stocks_news WHERE published_utc >= '2026-07-28 04:00:00' AND published_utc < '2026-07-29 04:00:00') AS news_publishers,
top_news.1 AS top_news_ticker,
top_news.2 AS top_news_n,
fil.1 AS fil_total,
fil.2 AS fil_filers,
fil.3 AS fil_form4,
fil.4 AS fil_8k,
fil.5 AS fil_424b2,
fil.6 AS fil_10q
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 analysisMarket Recap: July 28, 2026, The Day in Numbers
Session verification: first/last SPY bar ET, regular-bar count, holiday receipts, next closure
scalar 1×7
→
July 29 through 31 on the calendar: closures, ex-dividends, splits, the Friday expiry, and the short-interest lag
scalar 1×6
→
SPY day move in trailing context (open-to-close, June 29 through July 28)
scalar 1×4
→
SPY's median spread ranked against every July session, tightest first
scalar 1×4
→
Stocks NBBO update count: July 28 vs July 27, with named-ticker updates (millions)
scalar 1×6
→
Options NBBO tape: total updates vs the stock tape, plus the SPY root slice, July 28
scalar 1×3
→
See all 2,170 queries →