STRASMORE/EXPLORE 2,549 QUERIES

dps_growth

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 →
dps_growth — 10 rows by 3 columns, computed from US exchange, SIP and OPRA data.
yearvz_change_pctt_change_pct
20162.62.13
20172.22.08
20182.152.04
20192.112
20202.061.96
20212.020
20221.98-34.98
20231.94-17.93
20241.910
20251.870
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 dps_growth, derived from the stored result.
ColumnTypeRangeNotes
year number 2,016 to 2,025
vz_change_pct number 1.87 to 2.6 percent
t_change_pct number -34.98 to 2.13 percent

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
),
yearly AS
(
    SELECT
        toYear(ex_date)           AS year,
        sumIf(amount, tkr = 'VZ') AS vz,
        sumIf(amount, tkr = 'T')  AS t
    FROM paid
    WHERE toYear(ex_date) BETWEEN toYear(today()) - 11 AND toYear(today()) - 1
    GROUP BY year
    HAVING countIf(tkr = 'VZ') > 0 AND countIf(tkr = 'T') > 0
),
prior AS
(
    SELECT
        year + 1 AS year,
        vz       AS prev_vz,
        t        AS prev_t
    FROM yearly
)
SELECT
    y.year                                 AS year,
    round(100 * (y.vz / p.prev_vz - 1), 2) AS vz_change_pct,
    round(100 * (y.t / p.prev_t - 1), 2)   AS t_change_pct
FROM yearly AS y
INNER JOIN prior AS p ON p.year = y.year
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
annual_dps 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 →