Reported short interest across the same dividend payers
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-09-20, from Payment in Lieu of Dividends, Explained.
| ticker | short_interest_millions | settled_label |
|---|---|---|
| PFE | 151.5 | Aug 31, 2026 |
| AAPL | 139.7 | Aug 31, 2026 |
| MSFT | 74.5 | Aug 31, 2026 |
| XOM | 39.7 | Aug 31, 2026 |
| KO | 39.3 | Aug 31, 2026 |
| MRK | 30.3 | Aug 31, 2026 |
| PG | 28.2 | Aug 31, 2026 |
| IBM | 22 | Aug 31, 2026 |
| JNJ | 21.7 | Aug 31, 2026 |
| PEP | 21.3 | Aug 31, 2026 |
| CVX | 20.6 | Aug 31, 2026 |
- Rows × columns
- 11 × 3
- 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 |
|---|---|---|---|
ticker |
text | 11 distinct values (AAPL, CVX, IBM…) | |
short_interest_millions |
number | 20.6 to 151.5 | |
settled_label |
text | 1 distinct value (Aug 31, 2026) |
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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
SELECT
ticker,
round(argMax(short_interest, settlement_date) / 1e6, 1) AS short_interest_millions,
formatDateTime(max(settlement_date), '%b %e, %Y') AS settled_label
FROM global_markets.stocks_short_interest
WHERE ticker IN ('AAPL', 'MSFT', 'JNJ', 'PG', 'KO', 'PEP', 'XOM', 'CVX', 'MRK', 'IBM', 'PFE')
AND settlement_date >= today() - 75
GROUP BY ticker
ORDER BY short_interest_millions DESC