Start tracking your investments with OnePortfolio today
Home>OnePortfolio Blog>Understanding Risk Metrics: Beyond Volatility

Understanding Risk Metrics: Beyond Volatility

May 01, 2025OnePortfolio Team
Understanding Risk Metrics: Beyond Volatility

In our previous article on return metrics, we explored how to measure the growth of your investments. However, returns tell only half the story. Understanding the risks you’re taking to achieve those returns is equally critical for successful investing. Let’s dive into the essential risk metrics that every serious investor should understand.

Why Risk Measurement Matters

While everyone loves to talk about returns (who doesn’t enjoy bragging about their winners?), risk assessment often takes a backseat in portfolio evaluation. Yet, without understanding risk, you can’t properly contextualize your returns or make informed decisions about your investment strategy. Think about it: two portfolios might deliver the same 10% return, but if one gives you a smooth ride while the other takes you on a roller coaster of ups and downs, they’re hardly the same experience, are they?

Standard Deviation of Returns

What It Is

Standard deviation measures how wildly your investment returns swing around their average. It’s essentially the “nervousness factor” of your portfolio – higher standard deviation means more volatility and typically implies higher risk. If you’re the type who checks your portfolio daily, a high standard deviation investment might not let you sleep at night.

The Formula

Standard Deviation (σ) = √[Σ(R_i - R_avg)² / n]

Where:

  • R_i represents each individual return
  • R_avg is the average return
  • n is the number of return periods
  • Σ represents the sum of all values

Example Calculation

Let’s calculate the standard deviation of monthly returns for two different investments:

Investment A Monthly Returns: 2%, -1%, 3%, 0%, 1%
Investment B Monthly Returns: 8%, -6%, 10%, -4%, 7%

First, find the average return for each:

  • Investment A average: (2% - 1% + 3% + 0% + 1%) / 5 = 1%
  • Investment B average: (8% - 6% + 10% - 4% + 7%) / 5 = 3%

Next, calculate the standard deviation:

For Investment A:

σ = √[((2% - 1%)² + (-1% - 1%)² + (3% - 1%)² + (0% - 1%)² + (1% - 1%)²) / 5]
σ = √[((1%)² + (-2%)² + (2%)² + (-1%)² + (0%)²) / 5]
σ = √[(0.01% + 0.04% + 0.04% + 0.01% + 0%) / 5]
σ = √[0.10% / 5]
σ = √[0.02%]
σ = 1.41%

For Investment B:

σ = √[((8% - 3%)² + (-6% - 3%)² + (10% - 3%)² + (-4% - 3%)² + (7% - 3%)²) / 5]
σ = √[((5%)² + (-9%)² + (7%)² + (-7%)² + (4%)²) / 5]
σ = √[(0.25% + 0.81% + 0.49% + 0.49% + 0.16%) / 5]
σ = √[2.20% / 5]
σ = √[0.44%]
σ = 6.63%

Although Investment B has a higher average return (3% vs 1%), it also has a much higher standard deviation (6.63% vs 1.41%), indicating significantly more volatility and risk. Sure, you might earn more with Investment B, but you’ll need a stronger stomach to handle the ups and downs.

Downside Risk Deviation

What It Is

While standard deviation treats all deviations from the average (both positive and negative) as risk, downside risk focuses only on returns that fall below a specified threshold or minimum acceptable return (MAR). After all, do you really consider it “risky” when your investments go up more than expected? This metric recognizes that investors typically view upside volatility favorably and are primarily concerned with downside movements – the ones that actually cost you money.

The Formula

Downside Deviation = √[Σ(min(0, R_i - MAR))² / n]

Where:

  • R_i represents each individual return
  • MAR is the minimum acceptable return
  • n is the number of return periods
  • min(0, R_i - MAR) means we only consider negative differences

Example Calculation

Using the same investments, let’s calculate the downside deviation with a minimum acceptable return (MAR) of 0%:

Investment A Monthly Returns: 2%, -1%, 3%, 0%, 1%
Investment B Monthly Returns: 8%, -6%, 10%, -4%, 7%

For Investment A: Only the -1% return falls below our 0% MAR.

Downside Deviation = √[((min(0, -1% - 0%))² + 0 + 0 + 0 + 0) / 5]
Downside Deviation = √[((-1%)² + 0 + 0 + 0 + 0) / 5]
Downside Deviation = √[0.01% / 5]
Downside Deviation = √[0.002%]
Downside Deviation = 0.45%

For Investment B: Both -6% and -4% fall below our 0% MAR.

Downside Deviation = √[(0 + (min(0, -6% - 0%))² + 0 + (min(0, -4% - 0%))² + 0) / 5]
Downside Deviation = √[(0 + (-6%)² + 0 + (-4%)² + 0) / 5]
Downside Deviation = √[(0 + 0.36% + 0 + 0.16% + 0) / 5]
Downside Deviation = √[0.52% / 5]
Downside Deviation = √[0.104%]
Downside Deviation = 3.22%

Investment B has a much higher downside deviation (3.22% vs 0.45%), confirming its higher risk profile specifically regarding negative returns. That’s over 7 times more downside risk! If you’re close to retirement or just hate losing money (and who doesn’t?), this metric deserves your attention.

Beta (β)

What It Is

Beta measures how much your investment tends to move in relation to the overall market. Think of it as your investment’s “market sensitivity.” If the market goes up or down by 1%, what does your investment typically do?

  • A beta of 1 means your investment moves in lock-step with the market
  • A beta greater than 1 means it’s like the market on steroids - more volatile in both directions
  • A beta less than 1 means it’s more laid-back than the market - less reactive to changes
  • A negative beta means it tends to zig when the market zags (rare, but valuable for diversification)

The Formula

Beta (β) = Covariance(R_i, R_m) / Variance(R_m)

Where:

  • R_i represents the investment returns
  • R_m represents the market (benchmark) returns

Example Calculation

Let’s calculate beta for an investment with the following monthly returns compared to the market:

Investment Monthly Returns: 3%, -2%, 4%, -1%, 2%
Market Monthly Returns: 2%, -1%, 3%, 0%, 1%

Step 1: Calculate the covariance between the investment returns and market returns.

Covariance = Σ[(R_i - Avg_i) × (R_m - Avg_m)] / n

Where:

  • Avg_i is the average investment return: (3% - 2% + 4% - 1% + 2%) / 5 = 1.2%
  • Avg_m is the average market return: (2% - 1% + 3% + 0% + 1%) / 5 = 1%
Covariance = [(3% - 1.2%) × (2% - 1%) + (-2% - 1.2%) × (-1% - 1%) + (4% - 1.2%) × (3% - 1%) + (-1% - 1.2%) × (0% - 1%) + (2% - 1.2%) × (1% - 1%)] / 5

Covariance = [(1.8% × 1%) + (-3.2% × -2%) + (2.8% × 2%) + (-2.2% × -1%) + (0.8% × 0%)] / 5

Covariance = [0.018% + 0.064% + 0.056% + 0.022% + 0%] / 5

Covariance = 0.16% / 5 = 0.032%

Step 2: Calculate the variance of the market returns.

Variance = Σ(R_m - Avg_m)² / n
Variance = [(2% - 1%)² + (-1% - 1%)² + (3% - 1%)² + (0% - 1%)² + (1% - 1%)²] / 5

Variance = [1%² + (-2%)² + 2%² + (-1%)² + 0%²] / 5

Variance = [0.01% + 0.04% + 0.04% + 0.01% + 0%] / 5

Variance = 0.10% / 5 = 0.02%

Step 3: Calculate beta by dividing the covariance by the variance.

Beta = 0.032% / 0.02% = 1.6

With a beta of 1.6, this investment is 60% more volatile than the market. In practical terms, if the market goes up 10%, you might expect this investment to rise about 16%. Sounds great on the upside, right? But remember, that relationship works in both directions – a 10% market drop could mean a 16% decline for you. Still excited about that high beta?

Maximum Drawdown

What It Is

Maximum drawdown measures the largest percentage drop from a peak to a subsequent trough in the value of an investment. It’s basically answering the question: “What’s the worst beating this investment has ever taken?” It shows the pain experienced by an investor with the worst possible timing – buying at the peak and holding through the bottom.

The Formula

Maximum Drawdown = (Trough Value - Peak Value) / Peak Value

Example Calculation

Let’s say we have the following sequence of portfolio values: $100, $120, $110, $105, $95, $115, $125, $90, $100, $110

To find the maximum drawdown:

  1. Identify each peak followed by a decline
  2. Calculate the drawdown for each peak-to-trough period
  3. Find the largest drawdown

First peak: $120 (followed by decline to $95)

Drawdown = ($95 - $120) / $120 = -$25 / $120 = -20.83%

Second peak: $125 (followed by decline to $90)

Drawdown = ($90 - $125) / $125 = -$35 / $125 = -28.00%

The maximum drawdown is -28.00%, which means that at the worst point, this investment lost 28% of its value from the peak. Could you handle seeing more than a quarter of your money vanish (at least on paper) without panic-selling? This metric helps you honestly assess that before it happens.

How These Risk Metrics Work Together

Think of these risk metrics as different angles for viewing your portfolio’s risk:

  • Standard Deviation gives you the big picture of overall volatility – how bumpy is the ride?
  • Downside Deviation zooms in on just the bad volatility – how steep are the drops?
  • Beta tells you how your investment dances with the market – does it follow, lead, or do its own thing?
  • Maximum Drawdown shows you the historical worst-case scenario – could you stomach this without selling at the worst time?

Together, these metrics help you understand not just how risky an investment is, but what kind of risk you’re taking on.

Using Risk Metrics in Different Market Conditions

How you use these metrics might change depending on what’s happening in the market:

In Bull Markets

  • Low standard deviation with high returns is the dream scenario (though rare)
  • Higher beta investments often shine – they’re the ones posting those eye-catching returns everyone brags about
  • Maximum drawdown might seem less important (until the bull market suddenly ends)

In Bear Markets

  • Downside deviation suddenly becomes everyone’s favorite metric
  • Lower beta investments become the popular kids at the investment party
  • Maximum drawdown goes from theoretical to painfully real

In Volatile Markets

  • All these metrics become super important
  • Comparing current volatility to historical patterns helps you avoid overreacting
  • Having investments with different risk profiles helps you sleep at night

Practical Applications for Portfolio Management

Understanding risk metrics changes how you manage your money:

  1. Risk Budgeting: Instead of just saying “I’ll put 60% in stocks,” you can actually decide how much volatility you’re willing to accept

  2. Diversification Analysis: You can see if you’re truly diversified or just holding a bunch of investments that all move together

  3. Investment Selection: You can look beyond returns and ask “Am I being compensated enough for this risk?”

  4. Expectation Setting: Instead of being surprised when investments drop (they always do eventually), you can prepare yourself mentally

Why Dedicated Portfolio Trackers Are Essential for Risk Management

Let’s be honest – calculating these metrics by hand would be a nightmare. Even with Excel, it’s time-consuming and error-prone. Portfolio trackers make risk management accessible by:

  • Continuous Monitoring: Seeing your risk metrics update as markets change
  • Historical Analysis: Comparing today’s volatility to past periods for perspective
  • Visual Representation: Understanding complex metrics through intuitive charts
  • Scenario Testing: Seeing how potential changes might affect your portfolio’s risk profile

Conclusion

Understanding the risk in your portfolio is just as important as tracking returns – maybe even more so. By getting familiar with these four key risk metrics—Standard Deviation, Downside Risk Deviation, Beta, and Maximum Drawdown—you gain crucial insights into the volatility and potential downside of your investments.

In our previous article, we explored how to measure returns. In our next article, we’ll bring these concepts together by examining risk-adjusted return metrics, which help you determine whether the returns you’re achieving adequately compensate for the risks you’re taking.


Tracking risk metrics manually requires consistent data collection and complex calculations. OnePortfolio simplifies this process, helping you monitor your portfolio’s risk profile without the spreadsheet hassle. Try OnePortfolio Free.

← Back to Blog
Start tracking your investments with OnePortfolio today