1 / 5

How To Compare Similar Portfolios?

How To Compare Similar Portfolios?. daily_rets[i ] = (value[i]/value[i-1]) – 1 std_metric = stdev(daily_rets ). Sharpe Ratio . Most “important” measure of asset performance. How well does the return of an asset compensate the investor for the risk taken?

odin
Télécharger la présentation

How To Compare Similar Portfolios?

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. How To Compare Similar Portfolios? • daily_rets[i] = (value[i]/value[i-1]) – 1 • std_metric = stdev(daily_rets)

  2. Sharpe Ratio • Most “important” measure of asset performance. • How well does the return of an asset compensate the investor for the risk taken? • The higher the Sharpe ratio the better. • When comparing two assets each with the same return, higher Sharpe ratio gives more return for the same risk.

  3. Sharpe Ratio • Reward/Risk = How much reward are you getting for your risk? • metric = k * mean(daily_rets)/stdev(daily_rets)) • k = sqrt(250) for daily returns

  4. Example

More Related