July 6's corporate calendar and information flow, in one row (including the reverse-split wall behind a screener trap)
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 Market Recap: July 6, 2026, The Day in Numbers.
ex dividend records
119
splits executed
15
reverse splits
14
forward splits
1
ipos listed
0
sec filings
3,164
insider form4 filings
1,219
filings 8k
201
news articles
236
news publishers
3
most covered ticker
NVDA
most covered articles
25
- Rows × columns
- 1 × 12
- 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 119 | |
splits_executed |
number | every row is 15 | |
reverse_splits |
number | every row is 14 | |
forward_splits |
number | every row is 1 | |
ipos_listed |
number | every row is 0 | |
sec_filings |
number | every row is 3,164 | |
insider_form4_filings |
number | every row is 1,219 | |
filings_8k |
number | every row is 201 | |
news_articles |
number | every row is 236 | |
news_publishers |
number | every row is 3 | |
most_covered_ticker |
text | 1 distinct value (NVDA) | |
most_covered_articles |
number | every row is 25 |
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 (count(), uniqExact(publisher))
FROM global_markets.stocks_news
WHERE toDate(toTimeZone(published_utc, 'America/New_York')) = '2026-07-06'
) AS news,
(
SELECT (argMax(t, n), max(n))
FROM (
SELECT t, count() AS n
FROM (
SELECT arrayJoin(tickers) AS t
FROM global_markets.stocks_news
WHERE toDate(toTimeZone(published_utc, 'America/New_York')) = '2026-07-06'
)
WHERE t != 'SPCX'
GROUP BY t
)
) AS top_news
SELECT
(SELECT count() FROM global_markets.stocks_dividends WHERE ex_dividend_date = '2026-07-06') AS ex_dividend_records,
(SELECT count() FROM global_markets.stocks_splits WHERE execution_date = '2026-07-06') AS splits_executed,
(SELECT countIf(toFloat64(split_from) > toFloat64(split_to)) FROM global_markets.stocks_splits WHERE execution_date = '2026-07-06') AS reverse_splits,
(SELECT countIf(toFloat64(split_to) > toFloat64(split_from)) FROM global_markets.stocks_splits WHERE execution_date = '2026-07-06') AS forward_splits,
(SELECT count() FROM global_markets.stocks_ipos WHERE listing_date = '2026-07-06') AS ipos_listed,
(SELECT uniqExact(accession_number) FROM global_markets.stocks_sec_edgar_index WHERE filing_date = '2026-07-06') AS sec_filings,
(SELECT uniqExactIf(accession_number, form_type = '4') FROM global_markets.stocks_sec_edgar_index WHERE filing_date = '2026-07-06') AS insider_form4_filings,
(SELECT uniqExactIf(accession_number, form_type = '8-K') FROM global_markets.stocks_sec_edgar_index WHERE filing_date = '2026-07-06') AS filings_8k,
news.1 AS news_articles,
news.2 AS news_publishers,
top_news.1 AS most_covered_ticker,
top_news.2 AS most_covered_articles
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 6, 2026, The Day in Numbers
Session check: SPY's observed minute-bar span, the July 3 closure, and the next one on the calendar
scalar 1×8
→
One row for the whole options day: volume, call share, and the Monday same-day expiry
scalar 1×16
→
SPY's open-to-close move ranked against the trailing month of sessions (rank 1 = biggest absolute move)
scalar 1×4
→
SPY's update-weighted average quoted spread: July 6 ranked against the trailing month (rank 1 = tightest)
scalar 1×7
→
The whole equity NBBO stream: July 6 vs the July 2 session, and where Monday's quotes clustered
scalar 1×6
→
Advancers vs decliners among tickers with at least $1M traded on July 6
scalar 1×7
→
See all 2,170 queries →