STRASMORE/EXPLORE 2,170 QUERIES

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

as of scalar 1×14read in context →
ex dividend records
91
reverse splits
7
forward splits
1
listings
0
news articles
166
news publishers
2
top news ticker
MSFT
top news n
12
fil total
3,997
fil filers
2,163
fil form4
587
fil 8k
226
fil 424b2
555
fil 10q
23
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 27 SEC filing mix, derived from the stored result.
ColumnTypeRangeNotes
ex_dividend_records number every row is 91
reverse_splits number every row is 7
forward_splits number every row is 1
listings number every row is 0
news_articles number every row is 166
news_publishers number every row is 2
top_news_ticker text 1 distinct value (MSFT)
top_news_n number every row is 12 count
fil_total number every row is 3,997
fil_filers number every row is 2,163
fil_form4 number every row is 587
fil_8k number every row is 226
fil_424b2 number every row is 555
fil_10q number every row is 23

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