Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Risk Adjusted Return | Portfolio Optimization Basics
Introduction to Financial Portfolio Management with Python
course content

Course Content

Introduction to Financial Portfolio Management with Python

Introduction to Financial Portfolio Management with Python

1. Portfolio Analysis Basics
2. Portfolio Optimization Basics
3. Factor Investing

Risk Adjusted Return

How to Fairly Estimate Portfolio?

Before we dive into selecting better portfolios, we need to clarify what matters most for us. Are we prioritizing higher returns, lower risks, or something else?

It's important to note that generally, higher returns come with higher risks.

So, we should evaluate whether return is sufficiently high to justify the associated risk.

Therefore, we can use Risk Adjusted Return as one of the optimality measures:

Sharpe Ratio

After discussing what is a risk-adjusted return, the next question arises: how can we specifically measure it?

The most common and likely the simplest way to measure risk-adjusted return is through the Sharpe Ratio, which is defined by the following formula:

Here we encounter a new term: risk-free interest rate, which refers to the theoretical return on an investment with no risk of financial loss.

The risk-free rate usually represents the interest rate on government bonds, which are deemed to have minimal risk because they are backed by the government.

When we consider the risk-free rate to be zero, we can interpret it as ratio of the return to the risk.

Generally, it reflects ratio of the generated profit to the risk involved.

A portfolio with a Sharpe ratio greater than 1 is generally considered good.

Here is a code example of computing the Sharpe ratio based on the previously mentioned example, assuming a risk-free rate of 0.01:

12345678910111213141516
# Defining corresponding returns `R1` and `R2`, corresponding risks `σ1` and `σ2` and risk-free interest rate `r` R1 = 0.1 R2 = 0.2 σ1 = 0.02 σ2 = 0.05 r = 0.01 # Computing Sharpe ratios `s1` and `s2` s1 = (R1 - r) / σ1 s2 = (R2 - r) / σ2 # Printing recieved values print('Sharpe ratio for the first case:\n') print(s1) print('Sharpe ratio for the first case:\n') print(s2)
copy

As we can see, the Sharpe ratio of the first portfolio is higher than that of the second, so we should consider the first portfolio to be more optimal.

Why risk-adjusted return is important?

Select a few correct answers

Everything was clear?

Section 2. Chapter 1
We're sorry to hear that something went wrong. What happened?
some-alt