How to Calculate Dividend Rate on Preferred Stock

Preferred Stock Dividend Rate Calculator

Dividend Rate: 0%

function calculateDivRate() { var annualDiv = parseFloat(document.getElementById('annualDiv').value); var parValue = parseFloat(document.getElementById('parValue').value); var resultArea = document.getElementById('resultArea'); var divResult = document.getElementById('divResult'); var resultText = document.getElementById('resultText'); if (isNaN(annualDiv) || isNaN(parValue) || parValue <= 0) { alert("Please enter valid positive numbers for both the Annual Dividend and Par Value."); return; } var rate = (annualDiv / parValue) * 100; divResult.innerText = rate.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); resultText.innerText = "This stock pays a " + rate.toFixed(2) + "% dividend relative to its par value of $" + parValue.toFixed(2) + "."; resultArea.style.display = 'block'; }

How to Calculate Preferred Stock Dividend Rates

Preferred stock is a unique asset class that combines features of both stocks and bonds. One of its most attractive qualities is the fixed dividend payment. Understanding how to calculate the dividend rate is essential for income-focused investors looking to compare different preferred issues.

The Preferred Stock Dividend Rate Formula

The calculation for the dividend rate is straightforward. Unlike common stock, where the dividend yield fluctuates based on the market price, the stated dividend rate of a preferred stock is almost always calculated based on its Par Value.

Dividend Rate (%) = (Annual Dividend / Par Value) × 100

Key Definitions

  • Par Value: This is the face value of the stock, typically $25, $50, or $100. It is the amount used to calculate dividends and is often the price at which the company can redeem (call) the shares.
  • Annual Dividend: The total amount of money paid to the shareholder per share over the course of a full year.
  • Dividend Rate: The percentage of the par value that is paid out annually. This is often fixed when the stock is issued.

Practical Example

Suppose you are looking at a preferred stock issued by a utility company. The prospectus states the stock has a par value of $25.00 and pays an annual dividend of $1.50 per share.

Using our formula:

  1. Divide the Annual Dividend ($1.50) by the Par Value ($25.00).
  2. $1.50 / $25.00 = 0.06.
  3. Multiply by 100 to get the percentage.
  4. 0.06 × 100 = 6.00%.

The dividend rate for this preferred stock is 6.00%.

Dividend Rate vs. Current Yield

It is important to distinguish between the Dividend Rate and the Current Yield. The Dividend Rate is constant and based on the par value. However, preferred stocks trade on the open market. If the stock price drops below par, the Current Yield (Annual Dividend / Market Price) will be higher than the stated Dividend Rate. Conversely, if the stock trades above par (at a premium), the current yield will be lower.

Leave a Comment