What's the right way to take a series of returns and convert it into a continuous index? Let's say I want to show the performance of a strategy starting from 1, and adding on returns so that I get an equity curve, should I be using cumsum(1 + returns) or cumprod(1 + returns)?
Tell me more
×
Quantitative Finance Stack Exchange is a question and answer site for
finance professionals and academics. It's 100% free, no registration required.
|
|
|||||||
|
closed as off topic by Owe Jessen, Joshua Chance, chrisaycock♦ Mar 27 '11 at 19:30
Questions on Quantitative Finance Stack Exchange are expected to relate to quantitative finance within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
It should be cumprod. Say you have an index of 0.7, and a daily return of -10%. The new index should be 0.63, not 0.6. |
|||
|
|