Strasmore Research
Learn Matt ConnorBy Matt Connor · data as of September 24, 2026 · refreshed weekly

Stock Splits in Japan and the 100-Share Unit

Stock splits in Japan are ticket size housekeeping: Tokyo trades in units of 100 shares. Here is the unit arithmetic and how the US and India differ.

Stock splits in Japan are housekeeping on ticket size rather than a statement about the business. The Tokyo Stock Exchange trades domestic common shares in fixed units of 100, so the smallest position available in a ¥5,000 stock is ¥500,000. Splitting the shares is the standard way a listed company brings that minimum back down into the range the exchange prefers.

What a trading unit is

A trading unit is the block size the order book accepts. Orders arrive in whole units, and since October 1, 2018 every domestic common stock listed in Tokyo has carried the same one: 100 shares. Unit sizes varied from company to company before that date, and the 2018 standardization removed the variation.

Two things follow from that single number. The minimum investment amount for any Tokyo-listed stock is its share price multiplied by 100. Voting rights also attach per unit, so a holding of 100 shares carries one vote and a holding of 50 carries none.

A US reader has no equivalent to compare it with. American exchanges quote in round lots of 100 shares, but the round lot is a quoting convention rather than a floor on order size. One share is a valid order, and fractional shares go below even that.

Why splits in Tokyo are routine housekeeping

The exchange asks its listed companies to keep the minimum investment unit inside a stated desirable range, from ¥50,000 up to just under ¥500,000. A share price above ¥5,000 puts the company out the top of that range, and a split is the conventional remedy. The ratio and the effective date are announced in the ordinary course of company disclosure, and the unit stays at 100 shares throughout.

That framing changes how the announcement reads. Where a 100-share unit exists, a split is a tool for managing the size of the smallest ticket, and the same tool comes out again whenever the price climbs back through the band. The mechanics shared by every market are covered in what a stock split does.

The arithmetic, worked through

Take a hypothetical stock at ¥5,000 with the standard unit of 100 shares. The minimum ticket is ¥500,000. Apply a 5-for-1 split and four things happen at once:

  • each share becomes five, so a 100-share holding becomes 500 shares
  • the reference price divides by five, to ¥1,000
  • the trading unit is unchanged at 100 shares
  • the minimum ticket falls to ¥100,000

The holder's yen value is the same on both sides of the split. What changed is the entry price for the next buyer, which fell by 80%.

What a 100-share unit would cost in the US

US stocks carry no unit rule, which makes them a clean way to price the rule in. The panel below takes the latest close for six widely held US names and multiplies it by 100: the Tokyo-style ticket those names would carry if the same rule applied here.

QueryWhat a 100-share trading unit would cost on six US names
tickerlast_close_usdlot_of_100_usd_kas_of_label
COST907.0890.7Sep 24, 2026
MSFT497.3549.7Sep 24, 2026
AAPL336.8533.7Sep 24, 2026
JNJ269.5227Sep 24, 2026
NVDA222.922.3Sep 24, 2026
KO88.568.9Sep 24, 2026
The exact SQL behind every number
SELECT
    ticker,
    round(toFloat64(argMax(close, date)), 2)              AS last_close_usd,
    round(toFloat64(argMax(close, date)) * 100 / 1000, 1) AS lot_of_100_usd_k,
    formatDateTime(max(date), '%b %e, %Y')                AS as_of_label
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'KO', 'COST', 'JNJ')
  AND date >= today() - 45
GROUP BY ticker
ORDER BY lot_of_100_usd_k DESC
Run this yourself

As of Sep 24, 2026, 100 shares of COST at $907.08 a share came to roughly $90.7 thousand. At the bottom of the same list, KO at $88.56 would ask about $8.9 thousand for the identical order size. The distance between those two figures, for what is nominally the same trade, is exactly what a unit rule hands to every listed company as its price moves.

US splits run the same arithmetic without the rule

No US exchange asks a company to split. Companies still do it, and the arithmetic is identical: the share count multiplies, the price divides, and a fixed 100-share order gets cheaper. The panel lists large-cap forward splits since 2022, with what 100 shares turned into and how far each one cut a 100-share ticket.

QueryLarge-cap US forward splits since 2022 and the ticket each one cut
tickersplit_labeleffective_onshares_after_100ticket_cut_pct
CMG50-for-1Jun 26, 2024500098
BKNG25-for-1Apr 6, 2026250096
GOOGL20-for-1Jul 18, 2022200095
GOOG20-for-1Jul 18, 2022200095
KLAC10-for-1Jun 12, 2026100090
NFLX10-for-1Nov 17, 2025100090
LRCX10-for-1Oct 3, 2024100090
SMCI10-for-1Oct 1, 2024100090
AVGO10-for-1Jul 15, 2024100090
CVNA5-for-1May 8, 202650080
NOW5-for-1Dec 18, 202550080
FTNT5-for-1Jun 23, 202250080
The exact SQL behind every number
WITH
    large_caps AS
    (
        SELECT ticker
        FROM global_markets.stocks_ratios
        WHERE date >= today() - 60
          AND market_cap > 20000000000
        GROUP BY ticker
    ),
    forward_splits AS
    (
        SELECT
            ticker,
            execution_date,
            any(split_to)   AS split_to,
            any(split_from) AS split_from
        FROM global_markets.stocks_splits
        WHERE execution_date >= '2022-01-01'
          AND execution_date <  today()
          AND ticker NOT IN ('SPCX')
        GROUP BY ticker, execution_date
        HAVING split_to > split_from
    )
SELECT
    f.ticker                                                                AS ticker,
    concat(toString(toUInt32(f.split_to)), '-for-',
           toString(toUInt32(f.split_from)))                                AS split_label,
    formatDateTime(f.execution_date, '%b %e, %Y')                           AS effective_on,
    toUInt32(round(100 * toFloat64(f.split_to) / toFloat64(f.split_from)))  AS shares_after_100,
    round(100 * (1 - toFloat64(f.split_from) / toFloat64(f.split_to)), 1)   AS ticket_cut_pct
FROM forward_splits AS f
INNER JOIN large_caps AS l ON l.ticker = f.ticker
ORDER BY shares_after_100 DESC, f.execution_date DESC
LIMIT 12
Run this yourself

The widest ratio in view, the 50-for-1 in CMG effective Jun 26, 2024, turned 100 shares into 5000 and cut a 100-share ticket by 98%. The narrowest on the list, the 5-for-1 in FTNT, cut the same ticket by 80%. A Tokyo-listed company sitting above the ¥500,000 ceiling picks its ratio the same way, by how far the ticket has to travel.

Splits also run in the other direction. US continued-listing standards set a minimum bid price near $1, and a reverse split is the housekeeping answer to that floor. Counted per year, the two kinds of action look like this.

QueryUS forward and reverse splits per year since 2016
yearforward_splitsreverse_splits
2016416725
2017379701
2018516524
2019388606
2020352679
2021404488
2022362622
2023358834
2024451867
20254241036
2026315903
The exact SQL behind every number
WITH split_events AS
(
    SELECT
        ticker,
        execution_date,
        any(split_to)   AS split_to,
        any(split_from) AS split_from
    FROM global_markets.stocks_splits
    WHERE execution_date >= '2016-01-01'
      AND execution_date <  today()
    GROUP BY ticker, execution_date
)
SELECT
    toString(toYear(execution_date)) AS year,
    countIf(split_to > split_from)   AS forward_splits,
    countIf(split_to < split_from)   AS reverse_splits
FROM split_events
GROUP BY year
ORDER BY year
Run this yourself

In 2016, US listings recorded 416 forward splits and 725 reverse ones. By 2025 the counts were 424 and 1036. The 2026 row covers the year to date and is still filling in.

Odd lots: what happens below one unit

A holding smaller than one unit is a less-than-unit share in Japanese practice, and it turns up in predictable places. A 3-for-2 split leaves a 100-share holder with 150 shares: one full unit plus 50 loose ones. Mergers and broker mini-share services produce the same leftover.

Those loose shares sit outside the main order book, which accepts whole units only. The holder works through the broker instead, either asking the issuer to buy the odd shares back or asking to buy the shortfall needed to round the holding up to a full unit. Pricing follows a reference price from a specified session rather than a live limit order, and no voting right attaches to the odd portion.

The US tape treats the same quantity as an ordinary trade. Counting every print in one name across one day shows how ordinary.

QueryEvery AAPL print on September 15, 2026, grouped by trade size
trade_bandtrade_countpct_of_trades
2 to 99 shares57763283.9
a single share651569.5
exactly 100 shares156802.3
101 to 999 shares285634.1
1,000 or more13350.2
The exact SQL behind every number
WITH day_tape AS
(
    SELECT size
    FROM global_markets.stocks_trades
    WHERE ticker = 'AAPL'
      AND sip_timestamp >= toDateTime('2026-09-15 00:00:00', 'UTC')
      AND sip_timestamp <  toDateTime('2026-09-16 00:00:00', 'UTC')
)
SELECT
    multiIf(size = 1,    'a single share',
            size < 100,  '2 to 99 shares',
            size = 100,  'exactly 100 shares',
            size < 1000, '101 to 999 shares',
                         '1,000 or more')                  AS trade_band,
    count()                                                 AS trade_count,
    round(100 * count() / (SELECT count() FROM day_tape), 1) AS pct_of_trades
FROM day_tape
GROUP BY trade_band
ORDER BY min(size)
Run this yourself

On the AAPL tape for September 15, 2026, prints of a single share were 83.9% of all trades, and the 2 to 99 share band added 9.5%. Trades of exactly 100 shares, the classic round lot, came to 2.3%. The first two bands in that panel are odd lots, quantities that could not be entered on a Tokyo order book at all.

Japan, India and the US, side by side

India reaches a similar retail goal through a different legal lever. An Indian split cuts the face value recorded on the share, ₹10 down to ₹1, and multiplies the share count to match. Japan abolished par value for shares in 2001, so a Japanese split simply multiplies the count against a unit that never moves. The Indian mechanic is walked through in India's face value stock splits.

The US sits at the far end of the same line, with no trading unit and no face value to cut. A company that wants a lower entry price can split, and a shareholder who wants a smaller ticket can buy less. Tokyo's other structural quirk worth knowing is its monthly derivatives settlement, which has its own vocabulary in SQ day in Japan.

How these panels were built

The US price panel reads the most recent daily close stored for each name within the last 45 sessions and multiplies it by 100, then divides by 1,000 for readability. The two split panels dedupe the corporate actions feed to one row per ticker and effective date; the large-cap filter keeps names carrying a market capitalization above $20 billion in the last 60 days. The trade size panel counts every print on the AAPL tape for September 15, 2026, including prints outside regular hours, and buckets them by share count. Yen figures in the text are worked examples of the unit arithmetic, not quotes from a Tokyo feed.

FAQ

How many shares are in one trading unit in Japan?

One hundred. Every domestic common stock listed on the Tokyo Stock Exchange has used the same 100-share unit since October 1, 2018, and one unit carries one vote at the annual meeting.

Why do Japanese companies split their stock so often?

The minimum investment amount is the share price times 100, and the exchange asks companies to keep that amount inside a desirable range of ¥50,000 to just under ¥500,000. A rising price walks the ticket out of the range, and a split walks it back in.

Does a stock split in Japan change what my holding is worth?

No. The share count multiplies by the ratio and the reference price divides by it, leaving the same value on both sides of the effective date. Only the size of the smallest new position changes.

Can I buy fewer than 100 shares of a Japanese stock?

Not on the main order book, which accepts whole units. Brokers offer less-than-unit services that execute away from the book at a reference price, and a holding below one unit carries no vote.

Is a Japanese split the same as an Indian face value split?

The motive is similar and the legal mechanic is not. India cuts the face value recorded on the share. Japan has had no par value since 2001 and multiplies the share count against a fixed 100-share unit.


Every panel here carries its SQL underneath. Open one, swap the tickers or the day, and run it yourself on the Strasmore terminal.