Ex-dividends, splits, listings, news, and the July 30 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-02, from Market Recap: July 30, 2026, The Day in Numbers.
ex dividend records
200
reverse splits
3
forward splits
3
listings
3
news articles
173
news publishers
2
top news ticker
NVDA
top news n
11
fil total
5,544
fil filers
2,743
fil form4
745
fil 8k
460
fil 424b2
1,426
fil 10q
252
- 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 200 | |
reverse_splits |
number | every row is 3 | |
forward_splits |
number | every row is 3 | |
listings |
number | every row is 3 | |
news_articles |
number | every row is 173 | |
news_publishers |
number | every row is 2 | |
top_news_ticker |
text | 1 distinct value (NVDA) | |
top_news_n |
number | every row is 11 | count |
fil_total |
number | every row is 5,544 | |
fil_filers |
number | every row is 2,743 | |
fil_form4 |
number | every row is 745 | |
fil_8k |
number | every row is 460 | |
fil_424b2 |
number | every row is 1,426 | |
fil_10q |
number | every row is 252 |
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-30 04:00:00' AND published_utc < '2026-07-31 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-30'
) AS fil
SELECT
(SELECT count() FROM global_markets.stocks_dividends WHERE ex_dividend_date = '2026-07-30') AS ex_dividend_records,
(SELECT countIf(toFloat64(split_from) > toFloat64(split_to)) FROM global_markets.stocks_splits WHERE execution_date = '2026-07-30') AS reverse_splits,
(SELECT countIf(toFloat64(split_to) > toFloat64(split_from)) FROM global_markets.stocks_splits WHERE execution_date = '2026-07-30') AS forward_splits,
(SELECT count() FROM global_markets.stocks_ipos WHERE listing_date = '2026-07-30') AS listings,
(SELECT count() FROM global_markets.stocks_news WHERE published_utc >= '2026-07-30 04:00:00' AND published_utc < '2026-07-31 04:00:00') AS news_articles,
(SELECT uniqExact(JSONExtractString(publisher, 'name')) FROM global_markets.stocks_news WHERE published_utc >= '2026-07-30 04:00:00' AND published_utc < '2026-07-31 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 30, 2026, The Day in Numbers
Session verification: first/last SPY bar ET, regular-bar count, holiday receipts, next closure
scalar 1×7
→
July 31 and August 3 on the calendar: closures, ex-dividends, splits, the Friday expiry, and the short-interest lag
scalar 1×6
→
SPY's median spread ranked against every July session, tightest first
scalar 1×4
→
Stocks NBBO update count: July 30 vs July 29, with named-ticker updates (millions)
scalar 1×6
→
Options NBBO tape: total updates vs the stock tape, plus the SPY root slice, July 30
scalar 1×3
→
SPY day move in trailing context (open-to-close, June 30 through July 30)
scalar 1×4
→
See all 2,170 queries →