Calculating standard deviation on compounded investment returns
March 25, 2008 1:20 AM
Subscribe
Is it possible to estimate the standard deviation of an investment's return after "y" years, if you know the investment's mean annual return and standard deviation?
In other words, I understand how to estimate the probability that next year's return might be n standard deviations above the mean, or between +n and -n standard devations around the mean.
But what if you bought and held that investment for y years. Is there a way you could estimate the standard deviation of the investment's value then?
E.g., let's say that i put $10,000 into an index fund. That fund has an average return of 8%, and a standard deviation of 16%, and I plan to hold it for 20 years. According to Excel's FV function, the portfolio's expected value will be $46,609.57 by then.
But I don't know how to estimate the standard deviation of the portfolio's possible value after 20 years of compounded growth. Is it possible to calculate/estimate it from just these measures?
I figure that simulation will get me an answer, but I'm hoping for something more generalizable...
Many thanks in advance for any advice or insight (or better yet, a formula!)
posted by stuehler to work & money (14 comments total)
1 user marked this as a favorite
V = N1*N2*...*Nn
The variance (the square of the standard deviation) is defined by
v(V) = {V^2} - {V}^2 where I'm using curly braces to represent average values. For the product we care about,
v(V) = {N1^2}*{N2^2}*...*{Nn^2} - {N1}^2*{N2}^2*...*{Nn}^2
Now we can again use the definition {Ni^2} = v(Ni) + {Ni}^2 to get
v(V) = (v(N1) + {N1}^2)(v(N2) + {Nn}^2)...(v(Ni) + {Ni}^2) - {N1}^2*{N2}^2*...*{Nn}^2
which I believe is the formula you seek. Sorry that html math isn't easier on the eyes.
posted by njgo at 3:13 AM on March 25