Security’s Equilibrium Rate of Return Calculator

Security's Equilibrium Rate of Return Calculator .calculator-container { max-width: 800px; margin: 0 auto; padding: 20px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: #f9f9f9; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); } .calculator-box { background: #ffffff; padding: 30px; border-radius: 8px; border: 1px solid #e0e0e0; margin-bottom: 40px; } .input-group { margin-bottom: 20px; } .input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; } .input-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .input-group input:focus { border-color: #007bff; outline: none; box-shadow: 0 0 0 2px rgba(0,123,255,0.25); } .calc-btn { display: block; width: 100%; padding: 14px; background-color: #007bff; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; } .calc-btn:hover { background-color: #0056b3; } .result-section { margin-top: 25px; padding: 20px; background-color: #e8f4ff; border-left: 5px solid #007bff; border-radius: 4px; display: none; } .result-title { font-size: 14px; text-transform: uppercase; color: #555; letter-spacing: 1px; margin: 0 0 10px 0; } .result-value { font-size: 32px; font-weight: 700; color: #007bff; } .result-detail { margin-top: 10px; font-size: 14px; color: #666; } .article-content { line-height: 1.6; color: #333; } .article-content h2 { margin-top: 30px; color: #2c3e50; } .article-content ul { padding-left: 20px; } .article-content li { margin-bottom: 10px; } .formula-box { background-color: #eee; padding: 15px; border-radius: 4px; font-family: monospace; text-align: center; margin: 20px 0; border: 1px solid #ddd; }

Equilibrium Rate of Return Calculator (CAPM)

The return on a zero-risk investment (e.g., T-Bills).
A measure of the security's volatility relative to the market.
The average expected return of the market index.

Equilibrium Rate of Return

0.00%

Understanding Security's Equilibrium Rate of Return

In financial theory, specifically within the Capital Asset Pricing Model (CAPM), the equilibrium rate of return represents the return required by investors to compensate them for the risk associated with holding a specific security. In an efficient market, this is the point where the supply of the security equals the demand.

This calculator helps investors determine if a stock or asset is fairly valued given its risk profile (Beta) compared to the broader market.

The Formula

The calculation is based on the Capital Asset Pricing Model (CAPM) formula:

E(Ri) = Rf + βi * (E(Rm) – Rf)

Where:

  • E(Ri): The Equilibrium (Expected) Rate of Return for the security.
  • Rf: The Risk-Free Rate (typically the yield on government treasury bills).
  • βi (Beta): The sensitivity of the security's returns to market returns.
  • E(Rm): The Expected Return of the Market.
  • (E(Rm) – Rf): The Market Risk Premium.

What Do The Inputs Mean?

Risk-Free Rate (Rf)

This is the theoretical rate of return of an investment with zero risk. In practice, the yield on 10-year U.S. Treasury bonds is often used as a proxy. If the current Treasury yield is 4%, you would enter 4.

Security Beta (β)

Beta measures systemic risk.

  • Beta = 1.0: The security moves exactly in line with the market.
  • Beta > 1.0: The security is more volatile than the market (higher risk, higher expected return).
  • Beta < 1.0: The security is less volatile than the market (lower risk, lower expected return).

Expected Market Return (Rm)

This is the average return expected from the market portfolio (e.g., the S&P 500). Historically, this often ranges between 8% and 10% over long periods, though it varies based on economic conditions.

Example Calculation

Imagine you are analyzing a tech stock with a high volatility. Here is how the equilibrium rate is calculated:

  • Risk-Free Rate: 3%
  • Security Beta: 1.5 (50% more volatile than the market)
  • Expected Market Return: 9%

Calculation:

Equilibrium Rate = 3% + 1.5 * (9% – 3%)

Equilibrium Rate = 3% + 1.5 * (6%)

Equilibrium Rate = 3% + 9% = 12%

This means that for the risk taken (Beta of 1.5), an investor requires a 12% return for the market to be in equilibrium.

Why is this important?

If an analyst estimates that the stock will actually return 15% (Fundamental Analysis), but the CAPM Equilibrium Rate is only 12%, the stock is considered undervalued (it offers more return than required for its risk level), representing a "Buy" signal.

Conversely, if the expected return is only 8%, but the equilibrium rate is 12%, the stock is overvalued given its risk profile.

function calculateEquilibrium() { // Get input values var rfInput = document.getElementById('riskFreeRate').value; var betaInput = document.getElementById('securityBeta').value; var rmInput = document.getElementById('marketReturn').value; // Convert to numbers var rf = parseFloat(rfInput); var beta = parseFloat(betaInput); var rm = parseFloat(rmInput); // Validation if (isNaN(rf) || isNaN(beta) || isNaN(rm)) { alert("Please enter valid numbers for all fields."); return; } // CAPM Logic: E(Ri) = Rf + Beta * (Rm – Rf) // Note: We keep numbers as percentages in the variable but treat the math logic carefully. // Formula using percentages directly: E% = Rf% + Beta * (Rm% – Rf%) var marketRiskPremium = rm – rf; var riskPremiumForSecurity = beta * marketRiskPremium; var equilibriumRate = rf + riskPremiumForSecurity; // Display results var resultDiv = document.getElementById('result'); var equilibriumDisplay = document.getElementById('equilibriumResult'); var detailDisplay = document.getElementById('riskPremiumDetail'); resultDiv.style.display = 'block'; equilibriumDisplay.innerText = equilibriumRate.toFixed(2) + "%"; detailDisplay.innerHTML = "Base Risk-Free Rate: " + rf.toFixed(2) + "%" + "Plus Security Risk Premium: " + riskPremiumForSecurity.toFixed(2) + "%"; }

Leave a Comment