STRASMORE/EXPLORE 2,549 QUERIES

annual_dps

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 vz-vs-t-dividend.

as of ranking 10×3read in context →
annual_dps — 10 rows by 3 columns, computed from US exchange, SIP and OPRA data.
yearvz_dpst_dps
20162.27251.92
20172.32251.96
20182.37252
20192.42252.04
20202.47252.08
20212.52252.08
20222.57251.3525
20232.62251.11
20242.67251.11
20252.72251.11
Rows × columns
10 × 3
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 annual_dps, derived from the stored result.
ColumnTypeRangeNotes
year number 2,016 to 2,025
vz_dps number 2.2725 to 2.7225
t_dps number 1.11 to 2.08

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 paid AS
(
    SELECT
        id,
        any(ticker)                 AS tkr,
        any(ex_dividend_date)       AS ex_date,
        any(toFloat64(cash_amount)) AS amount
    FROM global_markets.stocks_dividends
    WHERE ticker IN ('VZ', 'T')
      AND cash_amount > 0
    GROUP BY id
)
SELECT
    toYear(ex_date)                     AS year,
    round(sumIf(amount, tkr = 'VZ'), 4) AS vz_dps,
    round(sumIf(amount, tkr = 'T'), 4)  AS t_dps
FROM paid
WHERE toYear(ex_date) BETWEEN toYear(today()) - 10 AND toYear(today()) - 1
GROUP BY year
HAVING countIf(tkr = 'VZ') > 0 AND countIf(tkr = 'T') > 0
ORDER BY year
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

More from this analysisvz-vs-t-dividend
dps_growth ranking 10×3 → fcf_payout ranking 7×3 → t_levels table 8×5 → dividend_calendar series 5×8 → compare table 2×8 → Top 25 weekly-options underlyings by distinct contracts traded, with expiration weekdays ranking 25×4 → See all 2,549 queries →