Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Challenge: Portfolio Risk Calculator | Risk Analysis and Portfolio Management
Practice
Projects
Quizzes & Challenges
Quizer
Challenges
/
Python for FinTech
Seksjon 2. Kapittel 3
single

single

bookChallenge: Portfolio Risk Calculator

Sveip for å vise menyen

When building a portfolio, understanding both the expected return and the risk (often measured by standard deviation) is crucial for making informed investment decisions. The expected return gives you an idea of what you might gain on average, while the risk quantifies how much the returns can vary. Asset weights play a fundamental role in this calculation: the proportion of your total investment allocated to each asset directly influences both the potential reward and the exposure to risk. If the weights do not sum to 1, your portfolio is either over- or under-invested, which can distort both your risk and return calculations. Ensuring proper weight allocation and accurately computing these metrics are foundational skills in portfolio management.

Oppgave

Swipe to start coding

Write a function that calculates the expected return and risk (standard deviation) of a two-asset portfolio using lists of historical returns and given weights. If the asset weights do not sum to 1, the function should raise a ValueError.

  • Compute the mean return for each asset using the provided lists.
  • Calculate the portfolio's expected return using the given weights.
  • Calculate the standard deviation (risk) of each asset.
  • Compute the covariance between the two assets.
  • Use the weights, standard deviations, and covariance to calculate the portfolio's standard deviation.
  • Return both the expected return and the standard deviation as a tuple.
  • Raise a ValueError if the weights do not sum to 1.

Løsning

Switch to desktopBytt til skrivebordet for virkelighetspraksisFortsett der du er med et av alternativene nedenfor
Alt var klart?

Hvordan kan vi forbedre det?

Takk for tilbakemeldingene dine!

Seksjon 2. Kapittel 3
single

single

Spør AI

expand

Spør AI

ChatGPT

Spør om hva du vil, eller prøv ett av de foreslåtte spørsmålene for å starte chatten vår

some-alt