Backtesting portfolio asset allocation
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
civs
el 28 de Jul. de 2014
Comentada: Roger Wohlwend
el 30 de Jul. de 2014
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.
0 comentarios
Respuesta aceptada
Roger Wohlwend
el 29 de Jul. de 2014
Editada: Roger Wohlwend
el 29 de Jul. de 2014
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 comentarios
Roger Wohlwend
el 30 de Jul. de 2014
Assuming you have daily data, just take every tenth data point.
Más respuestas (0)
Ver también
Categorías
Más información sobre Portfolio Optimization and Asset Allocation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!