Backtesting portfolio asset allocation

조회 수: 1 (최근 30일)
civs
civs 2014년 7월 28일
댓글: Roger Wohlwend 2014년 7월 30일
Hello,
I have 4 portfolio strategies I want to backtest. The portfolio strategies come from other 2 codes I created (mean-variance and mean-ES portfolio optimization frontier). Each of these strategies are basically just the weights of five different asset classes in the portfolio(s).
I want to compare the profitability of these four strategies for the period Jan 1st 2000 to May 1st 2014 evaluating the market value of the portfolios at every 10-day interval starting from Jan 1st 2000. All this assuming that I invest 1 million USD in every portfolio and hold the portfolio for the whole period mentioned.
My question is: How can I do this?
Thanks.

채택된 답변

Roger Wohlwend
Roger Wohlwend 2014년 7월 29일
편집: Roger Wohlwend 2014년 7월 29일
Assume that each column in the matrix Prices contains the time series of one your asset classes. Then calculate first the returns of the asset classes.
Returns = diff(log(Prices))
Now calculate the historical portfolio returns.
PortfolioReturns = Returns * PortfolioWeights;
Now let's see what happens to your million dollars:
Portfolio = 1e6 * [1; exp(cumsum(PortfolioReturns))]
Repeat this calculation for every portfolio.
  댓글 수: 2
civs
civs 2014년 7월 29일
Hi Roger,
Thank you for your answer. I actually have the matrix of returns already. It is a 3740 x 5 matrix with every column (from 2 to 6) representing the returns of an asset class. The first column (1) has the dates.
But how do I make sure that I get the market value of every portfolio strategy every 10 days? I am assuming the investor bought these portfolios and held them until the end of the period, and there were no withdrawals during the period.
Roger Wohlwend
Roger Wohlwend 2014년 7월 30일
Assuming you have daily data, just take every tenth data point.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Portfolio Optimization and Asset Allocation에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by