Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Portfolio Risk Calculator | Risk Analysis and Portfolio Management
Python for FinTech
セクション 2.  3
single

single

bookChallenge: Portfolio Risk Calculator

メニューを表示するにはスワイプしてください

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.

タスク

スワイプしてコーディングを開始

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.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 2.  3
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt