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

How Preferred Stock Dividends Work

Preferred stock dividends are a stated rate on par value, with rules common shares never carry. Cumulative terms, arrears, stoppers and call risk, explained.

Preferred stock dividends are set as a stated rate on a par value, and that one design choice separates them from the common dividend most investors picture. A common dividend is a per-share amount a board declares each period and can raise, cut or skip. A preferred dividend is written into the terms of the issue when it is sold: a fixed percentage of par, on a fixed schedule, for as long as the issue stays outstanding.

How a preferred stock dividend is set

Par value is the reference amount attached to the issue, and the coupon is quoted as a percentage of it. Preferreds aimed at individual investors usually carry a $25 par. A 6% issue on $25 par pays $1.50 per share a year, normally in four installments of $0.375. Those figures stay put while the market price moves around them. At a $19 price the same $1.50 works out to 7.9%; at $28 it works out to 5.4%. A yield on a screener is a quotient of a fixed payment and a moving price, so it is telling you where the price sits. Yield on par is fixed at the coupon. Yield on market price is whatever the market last decided.

The schedule side of the structure is visible across the whole dividend file. Grouping three years of declarations by their stated payment frequency shows the cadences in use.

QueryDividend declarations by stated payment schedule, past three years
The exact SQL behind every number
SELECT
    multiIf(frequency = 12, 'Monthly',
            frequency = 4,  'Quarterly',
            frequency = 2,  'Semi-annual',
            frequency = 1,  'Annual',
                            'Other or unscheduled') AS pay_schedule,
    count()                                         AS declarations,
    countDistinct(ticker)                           AS securities
FROM
(
    SELECT
        ticker,
        ex_dividend_date,
        any(ifNull(frequency, 0)) AS frequency
    FROM global_markets.stocks_dividends
    WHERE ex_dividend_date >= today() - 1095
      AND ex_dividend_date <= today()
    GROUP BY ticker, ex_dividend_date
)
GROUP BY pay_schedule
ORDER BY declarations DESC
Run this yourself

The largest group is Monthly, with 55574 declarations from 2309 distinct securities, and the file sorts into 5 schedule buckets in all. Most preferreds pay quarterly, and a smaller cohort pays monthly.

A stated rate leaves a second fingerprint, this one in the payment history: the same figure, quarter after quarter. Take every security that paid on a quarterly schedule at least eight times in the past three years, then count the distinct per-share amounts each one paid.

QueryQuarterly payers by how many different per-share amounts they paid
The exact SQL behind every number
SELECT
    multiIf(distinct_amounts = 1,  'Same amount every time',
            distinct_amounts = 2,  '2 different amounts',
            distinct_amounts = 3,  '3 different amounts',
            distinct_amounts <= 5, '4 to 5 different amounts',
                                   '6 or more different amounts') AS amount_pattern,
    count()                                                       AS securities,
    sum(payments)                                                 AS declarations
FROM
(
    SELECT
        ticker,
        countDistinct(amount) AS distinct_amounts,
        count()               AS payments
    FROM
    (
        SELECT
            ticker,
            ex_dividend_date,
            any(cash_amount) AS amount
        FROM global_markets.stocks_dividends
        WHERE frequency = 4
          AND cash_amount > 0
          AND ex_dividend_date >= today() - 1095
          AND ex_dividend_date <= today()
        GROUP BY ticker, ex_dividend_date
    )
    GROUP BY ticker
    HAVING payments >= 8
)
GROUP BY amount_pattern
ORDER BY min(distinct_amounts)
Run this yourself

The flat bucket, Same amount every time, holds 791 securities and 8953 individual payments. A number that never moves across a dozen quarters is the shape a contractual rate makes on a chart. A common dividend from a company that lifts its payout sits in one of the other buckets, picking up a new distinct amount every year or two.

Cumulative, non-cumulative and dividends in arrears

A cumulative preferred carries a memory. If the issuer skips a payment, the amount is not gone, it is in arrears, and every dollar of it has to be paid before common shareholders receive anything. A non-cumulative preferred has no memory: a skipped payment is skipped for good, and the next period starts clean. Bank holding companies typically issue non-cumulative preferreds, a condition of the regulatory capital treatment those securities receive.

Arrears is an obligation of position rather than a debt that accrues interest. In most issues the unpaid balance earns nothing while it waits, and the terms of the specific issue govern. Skipping a preferred dividend is also not an event of default the way missing a bond coupon is. What follows instead is a lock on the common dividend.

What a dividend stopper does

A dividend stopper blocks the issuer from paying a common dividend, and usually from repurchasing common shares, while any preferred dividend sits unpaid. It is the enforcement behind the word "preferred". The preferred ranks above the common in the capital structure, which is the order claims get paid in, and the stopper writes that order into the plumbing of the payment itself. On a cumulative issue the block holds until every arrear is cleared. On a non-cumulative issue it typically covers the current period only.

That is what makes a suspended preferred dividend readable from the common side: the common payout is frozen for as long as the suspension lasts. Anyone examining that risk from the cash-flow direction can start with dividend safety and cash flow coverage.

Call risk and yield to call

Nearly every preferred is callable. After a stated date, commonly five years from issue, the company may redeem the shares at par plus any accrued dividend, and the holder has no say. That feature puts a ceiling over the price. If a $25 par issue trades at $28 and the company redeems it next month, the holder receives $25.

Current yield ignores the ceiling entirely. Yield to call folds it in: it asks what the annualised return would be if the issue were redeemed on its first call date, counting the dividends collected until then together with the difference between the price paid and the redemption amount. Above par that difference is negative, and yield to call comes in under current yield, sometimes far under. Below par the same arithmetic runs the other way.

Worked through with round numbers: pay $27 for a 6% issue on $25 par with a year to the call date, collect $1.50 of dividends, receive $25 at redemption, and $1.50 of income lands against a $2.00 capital shortfall. Price relative to par and the date of the first call are the two figures that give a preferred's quoted yield its meaning. For the common-share version of the yield question, what counts as a good dividend yield covers the same ground.

Are preferred stock dividends qualified?

Some are and some are not, and the security's legal form is what settles it. Issues that are legally equity can pay dividends that qualify for the lower tax rate. Many exchange-listed securities that look and trade like preferred stock are structured as debt, and their payments arrive as interest, reported on a different form and never qualified. Trust preferreds and baby bonds often sit in that second group.

Where a payment does qualify, a holding-period test still applies, and the window for preferred shares runs longer than the one for common shares. The qualified dividend holding period sets out the counting rules and the ex-date they hinge on. This page teaches the structure; the treatment of any particular issue is a question for its prospectus and a tax professional.

Why preferred dividends run on their own calendar

A company's common stock and each of its preferred issues are separate securities with separate declarations. Four dates govern each one:

  • The declaration date, when the board announces the payment.
  • The ex-dividend date, the first session on which a buyer does not receive that payment.
  • The record date, when the issuer checks its books for holders.
  • The pay date, when the cash lands.

Nothing requires those dates to line up across an issuer's securities. A common dividend might go ex in the first week of March, June, September and December while a preferred issue goes ex in the middle of February, May, August and November, on a cycle fixed at its offering years earlier. Zoom out to the whole market and the quarterly rhythm shows up in the monthly count of declarations.

QueryMonthly count of dividend declarations across the market
The exact SQL behind every number
SELECT
    toString(toStartOfMonth(ex_dividend_date))                AS month,
    formatDateTime(toStartOfMonth(ex_dividend_date), '%b %Y') AS month_label,
    count()                                                   AS declarations,
    countIf(frequency = 4)                                    AS quarterly_declarations
FROM
(
    SELECT
        ticker,
        ex_dividend_date,
        any(ifNull(frequency, 0)) AS frequency
    FROM global_markets.stocks_dividends
    WHERE ex_dividend_date >= toStartOfMonth(today() - 1095)
      AND ex_dividend_date <  toStartOfMonth(today())
    GROUP BY ticker, ex_dividend_date
)
GROUP BY month, month_label
ORDER BY month
Run this yourself

The panel covers 36 months, from Aug 2023 through Jul 2026. That last full month carried 3818 declarations, 670 of them from securities on a quarterly schedule. The peaks repeat on a three-month beat: a large share of quarterly payers cluster their ex-dates into the same few weeks, and anything on a different cycle pays into the gaps.

The distance from the ex-date to the cash is its own variable. Under T+1 settlement the record date sits one business day after the ex-date, while the pay date is set by the issue's own terms and can be anywhere from days to more than a month later.

QueryDays from the ex-dividend date to the pay date, past two years
The exact SQL behind every number
SELECT
    multiIf(gap_days <= 7,  '0 to 7 days',
            gap_days <= 14, '8 to 14 days',
            gap_days <= 21, '15 to 21 days',
            gap_days <= 28, '22 to 28 days',
            gap_days <= 42, '29 to 42 days',
                            'More than 42 days') AS ex_to_pay_gap,
    count()                                      AS declarations,
    countDistinct(ticker)                        AS securities
FROM
(
    SELECT
        ticker,
        ex_dividend_date,
        dateDiff('day', ex_dividend_date, any(pay_date)) AS gap_days
    FROM global_markets.stocks_dividends
    WHERE ex_dividend_date >= today() - 730
      AND ex_dividend_date <= today()
      AND pay_date >= ex_dividend_date
      AND pay_date <= ex_dividend_date + 180
    GROUP BY ticker, ex_dividend_date
)
GROUP BY ex_to_pay_gap
ORDER BY min(gap_days)
Run this yourself

Read from the shortest gap to the longest, the first bucket, 0 to 7 days, holds 53723 declarations, and the last, More than 42 days, holds 3218. Two securities from the same issuer can land in different buckets. Entitlement is fixed on the ex-date in every one of them, and the pay date only says when the money moves. The record date versus the ex-dividend date sets out which of the two decides who gets paid.

FAQ

What is the difference between preferred and common stock dividends?

A preferred dividend is a stated rate on the issue's par value, fixed in the terms at the offering and paid on a set schedule. A common dividend is a per-share amount the board sets each period and can change at will. Preferred dividends also rank ahead of common dividends in the payment order.

What does it mean when preferred dividends are in arrears?

Arrears are skipped payments on a cumulative preferred that the issuer still owes. They accumulate until paid, and the dividend stopper blocks any common dividend or buyback until the balance is cleared. On a non-cumulative preferred, a skipped payment does not accumulate at all.

Can a company skip a preferred stock dividend?

Yes. Preferred dividends are declared rather than contractually due the way a bond coupon is, and skipping one is not an event of default. The cost to the issuer is the block on common dividends and buybacks, plus whatever arrears build up on a cumulative issue.

Why does a preferred trade above or below its par value?

The payment is fixed while the price is not. A price above par is a price at which a buyer's yield comes in below the coupon on par, and a price below par is the reverse. Prevailing interest rates and the nearness of the first call date both sit inside that number.

Are preferred stock dividends qualified dividends?

Some are and some are not. Issues that are legally equity can pay qualified dividends, subject to a holding-period test that runs longer for preferred shares than for common. Issues structured as debt pay what is reported as interest, which never qualifies.


Every panel here ships with the SQL that produced it, so expand one to see exactly which declarations were counted. To run the same counts over a different window or a single security, ask the question in plain English on the Strasmore terminal.

#dividends#preferred stock#ex-dividend#income investing#capital structure