STRASMORE/EXPLORE 2,170 QUERIES

Every split executed July 6, with its unadjusted close before and after (splits with no regular-session tape on both sides are dropped)

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.

as of table 12×7read in context →
Every split executed July 6, with its unadjusted close before and after (splits with no regular-session tape on both sides are dropped) — 12 rows by 7 columns, computed from US exchange, SIP and OPRA data.
tickerold_sharesnew_sharesold_shares_per_newjul2_closejul6_closeunadjusted_pct_chg
INLF20012000.026.3131450
NTCL501500.094.625033.3
NIPG301300.248.183308.3
JZ301300.12.992890
HKIT251250.174.132329.4
CRIS201200.355.91585.7
NVVE181180.324.941443.8
ABTC151150.568.471412.5
TXXS101102.3524.34935.7
SLAI7170.453.19608.9
SNAL5150.613.03396.7
NIVF3130.461.5226.1
Rows × columns
12 × 7
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 Every split executed July 6, with its unadjusted close before and after (splits with no regular-session tape on both sides are dropped), derived from the stored result.
ColumnTypeRangeNotes
ticker text 12 distinct values (ABTC, CRIS, HKIT…)
old_shares number 3 to 200 count
new_shares number every row is 1 count
old_shares_per_new number 3 to 200 count
jul2_close number 0.02 to 2.35 US dollars
jul6_close number 1.5 to 24.34 US dollars
unadjusted_pct_chg number 226.1 to 31,450 percent

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
SELECT
    s.ticker AS ticker,
    toFloat64(s.split_from) AS old_shares,
    toFloat64(s.split_to) AS new_shares,
    round(toFloat64(s.split_from) / toFloat64(s.split_to), 0) AS old_shares_per_new,
    p.prev_close AS jul2_close,
    d.day_close AS jul6_close,
    round((d.day_close / p.prev_close - 1) * 100, 1) AS unadjusted_pct_chg
FROM (
    SELECT ticker, any(split_from) AS split_from, any(split_to) AS split_to
    FROM global_markets.stocks_splits
    WHERE execution_date = '2026-07-06'
    GROUP BY ticker
) s
INNER JOIN (
    SELECT ticker, round(toFloat64(argMax(close, window_start)), 2) AS prev_close
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE window_start >= '2026-07-02 13:30:00' AND window_start < '2026-07-02 20:00:00'
      AND ticker IN (SELECT ticker FROM global_markets.stocks_splits WHERE execution_date = '2026-07-06')
    GROUP BY ticker
    HAVING prev_close > 0
) p ON s.ticker = p.ticker
INNER JOIN (
    SELECT ticker, round(toFloat64(argMax(close, window_start)), 2) AS day_close
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE window_start >= '2026-07-06 13:30:00' AND window_start < '2026-07-06 20:00:00'
      AND ticker IN (SELECT ticker FROM global_markets.stocks_splits WHERE execution_date = '2026-07-06')
    GROUP BY ticker
    HAVING day_close > 0
) d ON s.ticker = d.ticker
ORDER BY unadjusted_pct_chg DESC, ticker ASC

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
The eleven sector ETFs: July 6 vs the July 2 close, split into gap and intraday table 11×6 Volume leaders two ways: top 6 by dollars traded, top 4 by shares traded (one reused-symbol listing excluded pending entity verification) table 10×5 The touch at the gap open: median quoted spread and quote rate, 9:30–9:42 ET vs a midday control (12 minutes each) table 10×9 SPY / QQQ / DIA / IWM: July 6 vs the July 2 close, regular hours table 4×10 The memory and storage names: change vs Thursday's close, range timing, and dollar volume table 4×10 Megacap rotation: change vs Thursday's close, range timing, and dollar volume table 4×10 See all 2,170 queries →