Strasmore Research
Learn am Matt ConnorBy Matt Connor · data as of August 13, 2026 · refreshed weekly

Dividend Yield vs APY: Wetin Be the Difference?

Dividend yield na payout over moving share price, while APY na bank rate with legal formula and compounding. So 4% and 4% no be the same.

Dividend yield versus APY dey compare two numbers wey get percent sign, but na almost only that dem share. APY na bank disclosure: annualized rate on fixed principal, calculated with formula wey US law prescribe, and compounding dey assumed. Dividend yield na declared payment divide by share price wey dey change every trading session. Compounding no dey inside unless you reinvest the payment by yourself. 4% APY and 4% dividend yield na two different things wey just dey wear the same number.

Dividend yield vs APY: wetin each number dey measure

APY, annual percentage yield, na legal disclosure, no be market statistic. Regulation DD, wey be the rule wey dey implement Truth in Savings Act, require every US bank to calculate am exactly one way: APY = 100 x [(1 + Interest/Principal)^(365/Days in term) - 1]. That exponent na the main reason dem use the word yield for the name. E assume say the interest wey you earn remain inside the account and earn interest by itself. Na this one separate APY from ordinary annual rate.

Four things dey come with that number:

  • The principal no dey change. $10,000 for savings account go remain $10,000 tomorrow, plus anything wey don accrue.
  • Compounding don dey inside am already. Hypothetical 4.00% APY on $10,000 go leave about $10,400 after one year, no matter the posting schedule wey dey underneath.
  • E standardize the comparison. Two banks wey quote 4.00% APY go pay the same amount on the same balance over the same year. Na exactly wetin the disclosure dey guarantee.
  • Deposits get insurance up to the standard $250,000 limit per depositor for each insured bank.

Variable-rate savings APY fit change anytime the bank change am. Certificate of deposit go lock the rate for the tenor, but early withdrawal penalty na the cost if you comot before time. Either way, the quoted rate na promise about your balance.

Dividend yield no promise anything. Na arithmetic wey use two moving parts: dividends per share across one period, divide by the current share price, then multiply by 100. The numerator na decision wey board dey make every quarter. The denominator na whichever price the last trade print. Our guide to wetin dividend yield really dey measure cover the trailing and forward versions of that ratio.

Why credit union dey call im interest dividend

One naming mix-up dey make plenty savers enter dividend-yield pages by mistake. Credit unions na cooperatives wey their members own. The money wey dem pay you for share account, wey na their name for savings account, na distribution to members, and dem dey call am dividend. Your statement go show dividend rate beside APY under NCUA Truth in Savings rule for 12 CFR Part 707, wey be credit union equivalent of Regulation DD.

That dividend dey behave like bank interest: principal no change, e get insurance up to the standard $250,000 limit for each member, and share price no dey involved at all. Everything wey follow concern the other type: cash payment wey public company declare on im stock.

Why dividend yield dey move even when payment no change

The panel below use one household payer, Coca-Cola, and rebuild im yield month by month since January 2021. For each month, e find the latest regular quarterly payment wey company don declare, annualize am at four times the quarterly amount, then divide am by that month’s average closing price.

QueryCoca-Cola annualized dividend payment and yield, month by month
The exact SQL behind every number
WITH
    px AS
    (
        SELECT
            toStartOfMonth(date)  AS month_start,
            avg(toFloat64(close)) AS avg_close
        FROM global_markets.stocks_daily_aggs
        WHERE ticker = 'KO'
          AND date >= '2021-01-01'
          AND date <  toStartOfMonth(today())
        GROUP BY month_start
    ),
    dv AS
    (
        SELECT
            ex_dividend_date            AS ex_date,
            max(toFloat64(cash_amount)) AS cash
        FROM global_markets.stocks_dividends
        WHERE ticker = 'KO'
          AND currency = 'USD'
          AND frequency = 4
          AND ex_dividend_date >= '2019-01-01'
        GROUP BY ex_date
    )
SELECT
    formatDateTime(px.month_start, '%Y-%m')                              AS month,
    formatDateTime(px.month_start, '%b %Y')                              AS month_label,
    round(4 * argMax(dv.cash, dv.ex_date), 2)                            AS annual_payment_usd,
    round(100 * (4 * argMax(dv.cash, dv.ex_date)) / px.avg_close, 2)     AS dividend_yield_pct
FROM px
CROSS JOIN dv
WHERE dv.ex_date < px.month_start
GROUP BY px.month_start, px.avg_close
ORDER BY px.month_start
Run this yourself

The annualized payment na $1.64 per share for Jan 2021 and $2.12 for Jul 2026. E form staircase: e remain flat for four quarters at a time, then e step up when the board vote increase. The yield line cover the same 67 months, but e no dey stay still. E read 3.3% for the first month and 2.53% for the last month, with one path between them wey no board ever vote on. Every small movement for that second line na price movement.

Na this part dey confuse people. If you buy stock at 3% yield, e no mean say 3% on your money don lock in. Na only the price wey you pay e fix. The payment fit rise or fall from there, and the quoted yield wey you see tomorrow belong to whoever buy tomorrow.

Dividend yield wey be 4% na the same thing as 4% APY?

No. Do the same calculation across some household payers for the last two years, and the ranges go wide.

QueryWhere each yield don range for the past two years
The exact SQL behind every number
WITH
    px AS
    (
        SELECT
            ticker,
            toStartOfMonth(date)  AS month_start,
            avg(toFloat64(close)) AS avg_close
        FROM global_markets.stocks_daily_aggs
        WHERE ticker IN ('KO', 'JNJ', 'PG', 'CVX', 'MCD', 'VZ')
          AND date >= toStartOfMonth(today() - INTERVAL 2 YEAR)
          AND date <  toStartOfMonth(today())
        GROUP BY ticker, month_start
    ),
    dv AS
    (
        SELECT
            ticker,
            ex_dividend_date            AS ex_date,
            max(toFloat64(cash_amount)) AS cash
        FROM global_markets.stocks_dividends
        WHERE ticker IN ('KO', 'JNJ', 'PG', 'CVX', 'MCD', 'VZ')
          AND currency = 'USD'
          AND frequency = 4
          AND ex_dividend_date >= today() - INTERVAL 4 YEAR
        GROUP BY ticker, ex_date
    ),
    monthly AS
    (
        SELECT
            px.ticker                                              AS sym,
            px.month_start                                         AS month_start,
            100 * (4 * argMax(dv.cash, dv.ex_date)) / px.avg_close AS yield_pct
        FROM px
        CROSS JOIN dv
        WHERE dv.ticker = px.ticker
          AND dv.ex_date < px.month_start
        GROUP BY px.ticker, px.month_start, px.avg_close
    )
SELECT
    sym                                       AS ticker,
    round(min(yield_pct), 2)                  AS low_yield_pct,
    round(max(yield_pct), 2)                  AS high_yield_pct,
    round(max(yield_pct) - min(yield_pct), 2) AS swing_pts
FROM monthly
GROUP BY sym
ORDER BY swing_pts DESC
Run this yourself

Among the 6 names, VZ get the widest range. E start from 5.46% reach 6.91%, with a spread of 1.45 percentage points. Even MCD, wey steady pass for the group, cover 0.55 points during the same months. Savings APY wey bank quote at 4.00% go remain 4.00% until bank change am and tell you. Dividend yield wey dem quote at 4.00% na 4.00% for one price, at one particular time, for one buyer.

Wetin bank owe you versus wetin company owe you

Deposit na liability of the bank: na your money wey dem owe you back on demand or when e mature. If bank fail, insurance cover am up to the standard limit. Dividend na discretionary distribution. Board dey declare am from wetin the business generate, quarter by quarter. The same board fit reduce am or stop am for the next meeting. The yield wey you buy no bind the payer to continue paying.

The panel dey count how many times that annual cash really change. E take every US-listed regular quarterly payer, companies and funds together, wey make exactly four payments for two years back-to-back. Then e compare the total for both years.

QueryYear-over-year change for annual dividend cash, US quarterly payers
The exact SQL behind every number
WITH yearly AS
(
    SELECT
        ticker,
        toYear(ex_dividend_date)     AS pay_year,
        toYear(ex_dividend_date) + 1 AS next_year,
        count()                      AS payments,
        sum(cash)                    AS annual_cash
    FROM
    (
        SELECT
            ticker,
            ex_dividend_date,
            max(toFloat64(cash_amount)) AS cash
        FROM global_markets.stocks_dividends
        WHERE currency = 'USD'
          AND frequency = 4
          AND ex_dividend_date >= '2015-01-01'
          AND ex_dividend_date <  toStartOfYear(today())
        GROUP BY ticker, ex_dividend_date
    )
    GROUP BY ticker, pay_year, next_year
    HAVING payments = 4
)
SELECT
    toString(cur.pay_year)                                    AS year,
    countIf(cur.annual_cash > prv.annual_cash + 0.0001)       AS raised,
    countIf(abs(cur.annual_cash - prv.annual_cash) <= 0.0001) AS held_flat,
    countIf(cur.annual_cash < prv.annual_cash - 0.0001)       AS reduced
FROM yearly AS cur
INNER JOIN yearly AS prv ON cur.ticker = prv.ticker AND cur.pay_year = prv.next_year
GROUP BY year
ORDER BY year
Run this yourself

For 2025, 1568 of those payers distribute more money throughout the year than the year before, while 445 distribute less. Reductions dey show alongside increases for both ends of the period: 363 for 2016 and 445 for 2025. Our page on dividend cuts and wetin dey come before dem break down that group. Savings account no get any equivalent column.

Wey cash rate dey stay over time

Bank APYs dey set account by account, and dem no dey publish am as market series. So, the closest public benchmark wey person fit observe for the price of cash na Treasury bill. The way dem dey quote am no be the Regulation DD method. Treasury bill no get deposit insurance; na direct obligation of the Treasury instead. The movement over time na the useful part.

QueryThe 3-month and 1-year Treasury yield, every month since January 2020
The exact SQL behind every number
SELECT
    formatDateTime(toStartOfMonth(date), '%Y-%m') AS month,
    formatDateTime(toStartOfMonth(date), '%b %Y') AS month_label,
    round(avg(yield_3_month), 2)                  AS t_bill_3m_pct,
    round(avg(yield_1_year), 2)                   AS t_note_1y_pct
FROM global_markets.treasury_yields
WHERE date >= '2020-01-01'
  AND date <  toStartOfMonth(today())
GROUP BY month, month_label
ORDER BY month
Run this yourself

For Jan 2020, the 3-month bill average na 1.55%. For Jul 2026, e average na 3.87%, while the 1-year average na 4.05%. Deposit APYs dey usually follow similar movement, but with delay and with the margin wey each bank keep for itself. Two related pages explain the comparison further: dividend yield vs Treasury yields and where to park idle cash.

The closest thing to an apples-to-apples yield

For fund wey no be just one stock, the number wey come closest to APY discipline na SEC 30-day yield. Every US fund dey calculate am the same way, across the same 30-day window, after expenses don commot. This one make the numbers from two funds comparable in a way two dividend yields no be. E still be market yield based on price wey dey move, and no obligation dey behind am. SEC 30-day yield vs distribution yield explain how e differ from the cash wey fund actually pay you.

FAQ

APY na the same thing as dividend yield?

No. APY na bank annualized interest rate on fixed principal. E dey use one formula wey US rules prescribe, and e assume compounding. Dividend yield divide company declared payments by share price wey dey change every trading session. E no get compounding unless you reinvest the payment, and company no get obligation to make the payment.

Why credit union dey call interest dividend?

Credit unions na cooperatives wey members own. So, earnings wey dem pay members on share accounts dey carry the name dividend. The disclosure still show dividend rate and APY under NCUA Truth in Savings rule. The account still work like bank savings account with fixed principal.

Dividend yield dey compound like APY?

Only if you reinvest every payment by yourself. Then, the reinvestment happen at whatever price the shares dey trade that day. APY assume compounding by definition. Every interest posting remain inside the account and e dey earn interest too.

5% dividend yield better pass 5% APY?

You no fit compare the two based on the number alone. APY come with fixed principal and deposit insurance. The 5% yield come with price wey fit move up or down, plus payment wey the board fit review for the next meeting.

Wetin be the difference between APY and APR?

APR na simple annual rate wey no include compounding. Dem mostly quote am for money wey you borrow. APY include compounding, and dem quote am for money wey you earn. If the nominal rate na the same, APY go high pass APR.


Every panel here get the SQL wey produce am. Open any one, and you go see the full calculation. If you wan rebuild this yield path for ticker wey you dey follow, ask for am in plain English on the Strasmore terminal.

#dividends#yield#apy#cash#savings