Calculate 10y returns out of monthly data
Afficher commentaires plus anciens
hey guys,
i have monthly returns (1mil. simulations). Now i want to calculate corresponding 10 year returns. for example vextor x: 0.05 0.02 0.03 0.4 -0.21 ...
what matlab should do now is to calculate: ((1+r(1))*(1+r(2))*...(1+r(120)))-1 and ((1+r(121))*(1+r(122))*...(1+r(240)))-1 and so on...
thx for your help
Réponse acceptée
Plus de réponses (1)
Roger Wohlwend
le 24 Oct 2014
y = exp(filter(ones(120,1),1,log(1+r)))-1;
y = y(120:end);
2 commentaires
Markus
le 24 Oct 2014
Roger Wohlwend
le 24 Oct 2014
Oh, my mistake.
y = exp(filter(ones(120,1),1,log(1+r)))-1;
y = y(120:120:end);
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!