STRASMORE/EXPLORE 2,170 QUERIES

Ex-dividends, splits, listings, news, and the July 29 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 29, 2026, The Day in Numbers.

as of scalar 1×14read in context →
ex dividend records
85
reverse splits
2
forward splits
1
listings
1
news articles
190
news publishers
2
top news ticker
NVDA
top news n
13
fil total
5,742
fil filers
3,064
fil form4
712
fil 8k
440
fil 424b2
884
fil 10q
174
Rows × columns
1 × 14
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Ex-dividends, splits, listings, news, and the July 29 SEC filing mix, derived from the stored result.
ColumnTypeRangeNotes
ex_dividend_records number every row is 85
reverse_splits number every row is 2
forward_splits number every row is 1
listings number every row is 1
news_articles number every row is 190
news_publishers number every row is 2
top_news_ticker text 1 distinct value (NVDA)
top_news_n number every row is 13 count
fil_total number every row is 5,742
fil_filers number every row is 3,064
fil_form4 number every row is 712
fil_8k number every row is 440
fil_424b2 number every row is 884
fil_10q number every row is 174

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-29 04:00:00' AND published_utc < '2026-07-30 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-29'
    ) AS fil
SELECT
    (SELECT count() FROM global_markets.stocks_dividends WHERE ex_dividend_date = '2026-07-29') AS ex_dividend_records,
    (SELECT countIf(toFloat64(split_from) > toFloat64(split_to)) FROM global_markets.stocks_splits WHERE execution_date = '2026-07-29') AS reverse_splits,
    (SELECT countIf(toFloat64(split_to) > toFloat64(split_from)) FROM global_markets.stocks_splits WHERE execution_date = '2026-07-29') AS forward_splits,
    (SELECT count() FROM global_markets.stocks_ipos WHERE listing_date = '2026-07-29') AS listings,
    (SELECT count() FROM global_markets.stocks_news WHERE published_utc >= '2026-07-29 04:00:00' AND published_utc < '2026-07-30 04:00:00') AS news_articles,
    (SELECT uniqExact(JSONExtractString(publisher, 'name')) FROM global_markets.stocks_news WHERE published_utc >= '2026-07-29 04:00:00' AND published_utc < '2026-07-30 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 29, 2026, The Day in Numbers
Session verification: first/last SPY bar ET, regular-bar count, holiday receipts, next closure scalar 1×7 July 30 and 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 29) scalar 1×4 SPY's median spread ranked against every July session, tightest first scalar 1×4 Stocks NBBO update count: July 29 vs July 28, with named-ticker updates (millions) scalar 1×6 Options NBBO tape: total updates vs the stock tape, plus the SPY root slice, July 29 scalar 1×3 See all 2,170 queries →