STRASMORE/EXPLORE 2,170 QUERIES

Recent forward stock splits and the share multiplier

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-22, from Warrants vs Call Options: Key Differences.

as of ranking 12×4read in context →
Recent forward stock splits and the share multiplier — 12 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickereffective_onsplit_ratioshares_multiplier
SFBSAug 21, 20262-for-12
HCHDYAug 13, 20267-for-17.5
TYOYYAug 12, 202616-for-116
MNSTAug 11, 20262-for-12
BMJJFAug 10, 202610-for-110
WRIVJul 31, 20262-for-12
TORIFJul 30, 20262-for-12
CMTDFJul 30, 20264-for-14
IRLCFJul 27, 202610-for-110
WBKCYJul 23, 20264-for-14
WLFCJul 21, 20263-for-13
LABXJul 21, 20266-for-16
Rows × columns
12 × 4
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 Recent forward stock splits and the share multiplier, derived from the stored result.
ColumnTypeRangeNotes
ticker text 12 distinct values (BMJJF, CMTDF, HCHDY…)
effective_on text 10 distinct values (Aug 10, 2026, Aug 11, 2026, Aug 12, 2026…)
split_ratio text 7 distinct values (10-for-1, 16-for-1, 2-for-1…)
shares_multiplier number 2 to 16 count

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
    ticker,
    formatDateTime(execution_date, '%b %e, %Y')                                             AS effective_on,
    concat(toString(toUInt32(any(split_to))), '-for-', toString(toUInt32(any(split_from)))) AS split_ratio,
    round(toFloat64(any(split_to)) / toFloat64(any(split_from)), 2)                         AS shares_multiplier
FROM global_markets.stocks_splits
WHERE execution_date >= today() - 365
  AND execution_date <= today()
  AND split_from > 0
  AND toFloat64(split_to) / toFloat64(split_from) >= 2
  AND ticker NOT IN ('SPCX')
GROUP BY ticker, execution_date
ORDER BY execution_date DESC
LIMIT 12

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 analysisWarrants vs Call Options: Key Differences
Basic and diluted share counts across eight large caps ranking 8×4 AAPL call contracts traded, by expiration date series 22×4 Tesla basic and diluted share counts, quarter by quarter series 12×5 One time cash distributions per calendar year, and their share of all payouts ranking 9×3 One time distributions by size, measured against the ex date closing price ranking 6×3 Time value left in KO calls as they move deeper in the money ranking 5×4 See all 2,170 queries →