short_interest_calendar
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-24, from why-open-interest-updates-once-a-day.
| settlement_date | settlement_label | short_interest_millions |
|---|---|---|
| 2026-01-15 | Jan 15 | 113.58 |
| 2026-01-30 | Jan 30 | 116.85 |
| 2026-02-13 | Feb 13 | 133.37 |
| 2026-02-27 | Feb 27 | 129.55 |
| 2026-03-13 | Mar 13 | 124.19 |
| 2026-03-31 | Mar 31 | 126.77 |
| 2026-04-15 | Apr 15 | 134.42 |
| 2026-04-30 | Apr 30 | 134.68 |
| 2026-05-15 | May 15 | 138.78 |
| 2026-05-29 | May 29 | 155.89 |
| 2026-06-15 | Jun 15 | 144.25 |
| 2026-06-30 | Jun 30 | 140.53 |
- Rows × columns
- 12 × 3
- Period covered
- to
- 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 |
|---|---|---|---|
settlement_date |
date | 2026-01-15 to 2026-06-30 | |
settlement_label |
text | 12 distinct values (Apr 15, Apr 30, Feb 13…) | |
short_interest_millions |
number | 113.58 to 155.89 |
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
toString(settlement_date) AS settlement_date,
formatDateTime(toDate(settlement_date), '%b %e') AS settlement_label,
round(toFloat64(max(short_interest)) / 1e6, 2) AS short_interest_millions
FROM global_markets.stocks_short_interest
WHERE ticker = 'AAPL'
AND settlement_date >= '2026-01-01'
AND settlement_date <= '2026-06-30'
GROUP BY settlement_date
ORDER BY settlement_date
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.