STRASMORE/EXPLORE 2,170 QUERIES

Trailing four payments against the indicated rate, by quarter

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-08-14, from How Annual Dividend Per Share Is Calculated.

as of series 16×4read in context →
Trailing four payments against the indicated rate, by quarter — 16 rows by 4 columns, computed from US exchange, SIP and OPRA data.
ex_dateex_date_labeltrailing_4_paymentsindicated_rate
2022-08-05Aug 20220.90.92
2022-11-04Nov 20220.910.92
2023-02-10Feb 20230.920.92
2023-05-12May 20230.930.96
2023-08-11Aug 20230.940.96
2023-11-10Nov 20230.950.96
2024-02-09Feb 20240.960.96
2024-05-10May 20240.971
2024-08-12Aug 20240.981
2024-11-08Nov 20240.991
2025-02-10Feb 202511
2025-05-12May 20251.011.04
2025-08-11Aug 20251.021.04
2025-11-10Nov 20251.031.04
2026-02-09Feb 20261.041.04
2026-05-11May 20261.051.08
Rows × columns
16 × 4
Period covered
to
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 Trailing four payments against the indicated rate, by quarter, derived from the stored result.
ColumnTypeRangeNotes
ex_date date 2022-08-05 to 2026-05-11
ex_date_label text 16 distinct values (Aug 2022, Aug 2023, Aug 2024…)
trailing_4_payments number 0.9 to 1.05
indicated_rate number 0.92 to 1.08 ratio or rate

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.

the exact SQL behind every number
SELECT
    ex_date,
    ex_date_label,
    trailing_4_payments,
    indicated_rate
FROM
(
    SELECT
        toString(ex_dividend_date)                 AS ex_date,
        formatDateTime(ex_dividend_date, '%b %Y')  AS ex_date_label,
        ex_dividend_date                           AS d,
        round(4 * amt, 4)                          AS indicated_rate,
        round(sum(amt) OVER (ORDER BY ex_dividend_date ROWS BETWEEN 3 PRECEDING AND CURRENT ROW), 4) AS trailing_4_payments
    FROM
    (
        SELECT
            ex_dividend_date,
            max(toFloat64(cash_amount)) AS amt
        FROM global_markets.stocks_dividends
        WHERE ticker = 'AAPL'
          AND ex_dividend_date >= '2021-07-01'
          AND ex_dividend_date <  '2026-07-01'
        GROUP BY ex_dividend_date
    )
)
WHERE d >= '2022-07-01'
ORDER BY d

Run your own version of this

The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.

More from this analysisHow Annual Dividend Per Share Is Calculated
Declared amount against split-restated amount, per quarter series 56×4 Eight quarterly declarations, ex-date and pay date series 8×4 Ex-date to pay date across US cash dividends, by year ranking 7×4 One set of payments, four annual dividend totals ranking 4×3 Days between declaration, ex-date, record and payable series 16×5 Thirteen big dividend and income funds: last ex-date, cadence, and the implied next ex-date series 13×8 See all 2,170 queries →