{"slug":"stock-splits-vs-fractional-shares","qid":"price_weighting","label":"Price weighting across ten large US names, latest close","post_title":"Stock Splits vs Fractional Shares Explained","post_url":"/blog/stock-splits-vs-fractional-shares#q-price_weighting","columns":["ticker","share_price","index_weight_pct"],"rows":[{"ticker":"GS","share_price":1011.5,"index_weight_pct":23.1},{"ticker":"CAT","share_price":825.05,"index_weight_pct":18.8},{"ticker":"MSFT","share_price":481.8,"index_weight_pct":11},{"ticker":"UNH","share_price":384.88,"index_weight_pct":8.8},{"ticker":"V","share_price":366.08,"index_weight_pct":8.4},{"ticker":"JPM","share_price":354,"index_weight_pct":8.1},{"ticker":"HD","share_price":335.19,"index_weight_pct":7.7},{"ticker":"AAPL","share_price":312.08,"index_weight_pct":7.1},{"ticker":"NVDA","share_price":218.05,"index_weight_pct":5},{"ticker":"KO","share_price":90.51,"index_weight_pct":2.1}],"shape":"ranking","sql":"SELECT\n    ticker,\n    share_price,\n    round(100 * share_price / sum(share_price) OVER (), 1) AS index_weight_pct\nFROM\n(\n    SELECT\n        ticker,\n        round(toFloat64(argMax(close, date)), 2) AS share_price\n    FROM global_markets.stocks_daily_aggs\n    WHERE ticker IN ('AAPL', 'CAT', 'GS', 'HD', 'JPM', 'KO', 'MSFT', 'NVDA', 'UNH', 'V')\n      AND date >= today() - 20\n    GROUP BY ticker\n)\nORDER BY share_price DESC","computed_at":"2026-08-22T04:22:21.565814+00:00","elapsed":0.030512351}