forward_coverage
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-22, from ex-dividend-calendar-from-the-free-sql-api.
| week | week_label | payers |
|---|---|---|
| 2026-09-21 | Sep 21 | 805 |
| 2026-09-28 | Sep 28 | 411 |
| 2026-10-05 | Oct 5 | 80 |
| 2026-10-12 | Oct 12 | 149 |
| 2026-10-19 | Oct 19 | 61 |
| 2026-10-26 | Oct 26 | 39 |
| 2026-11-02 | Nov 2 | 12 |
| 2026-11-09 | Nov 9 | 81 |
| 2026-11-16 | Nov 16 | 58 |
| 2026-11-23 | Nov 23 | 7 |
| 2026-11-30 | Nov 30 | 18 |
| 2026-12-07 | Dec 7 | 59 |
- 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 |
|---|---|---|---|
week |
date | 2026-09-21 to 2026-12-07 | |
week_label |
text | 12 distinct values (Dec 7, Nov 16, Nov 2…) | |
payers |
number | 7 to 805 |
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(cal.week) AS week,
formatDateTime(cal.week, '%b %e') AS week_label,
toUInt32(ifNull(d.payers, 0)) AS payers
FROM
(
SELECT toMonday(today()) + 7 * arrayJoin(range(12)) AS week
) AS cal
LEFT JOIN
(
SELECT
toMonday(ex_dividend_date) AS w,
countDistinct(ticker) AS payers
FROM global_markets.stocks_dividends
WHERE ex_dividend_date >= toMonday(today())
AND ex_dividend_date < toMonday(today()) + 84
AND currency = 'USD'
AND ticker NOT IN ('SPCX')
GROUP BY w
) AS d ON d.w = cal.week
ORDER BY cal.week