STRASMORE/EXPLORE 2,469 QUERIES

next_fourteen

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.

as of ranking 15×4read in context →
next_fourteen — 15 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickergoes_expayablecash_amount
GGLLSep 22Sep 290.6053
TZASep 22Sep 290.47334
SOXSSep 22Sep 290.43641
NUGTSep 22Sep 290.39601
TMFSep 22Sep 290.35062
SPXSSep 22Sep 290.33865
SPXLSep 22Sep 290.31028
MUUSep 22Sep 290.20279
AAPDSep 22Sep 290.17786
METUSep 22Sep 290.17184
APHSep 22Oct 140.125
SPDNSep 22Sep 290.11525
SOXLSep 22Sep 290.0929
STMSep 22Sep 290.09
TSLLSep 22Sep 290.07077
Rows × columns
15 × 4
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for next_fourteen, derived from the stored result.
ColumnTypeRangeNotes
ticker text 15 distinct values (AAPD, APH, GGLL…)
goes_ex text 1 distinct value (Sep 22)
payable text 2 distinct values (Oct 14, Sep 29)
cash_amount number 0.0708 to 0.6053

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.

WITH liquid AS
(
    SELECT ticker
    FROM global_markets.stocks_daily_aggs
    WHERE date >= today() - 45
    GROUP BY ticker
    HAVING avg(toFloat64(close) * volume) > 1e8
)
SELECT
    ticker,
    formatDateTime(ex_dividend_date, '%b %e')  AS goes_ex,
    formatDateTime(any(pay_date), '%b %e')     AS payable,
    max(cash_amount)                           AS cash_amount
FROM global_markets.stocks_dividends
WHERE ex_dividend_date >= today()
  AND ex_dividend_date <  today() + 14
  AND currency = 'USD'
  AND ticker IN (SELECT ticker FROM liquid)
  AND ticker NOT IN ('SPCX')
GROUP BY ticker, ex_dividend_date
ORDER BY ex_dividend_date, cash_amount DESC, ticker
LIMIT 15
⌘/Ctrl + Enter
More from this analysisex-dividend-calendar-from-the-free-sql-api
declaration_lead ranking 5×2 forward_coverage series 12×3 Top 25 weekly-options underlyings by distinct contracts traded, with expiration weekdays ranking 25×4 Annualized volatility vs total return, 25 large caps, calmest to wildest (~2 years) ranking 25×3 SPY options median spread by expiration date, near-the-money strikes only ranking 25×4 walk_forward ranking 24×4 See all 2,469 queries →