I am looking for formula to convert Annual stock return to a compounded
annualized return.
i have developed a formula that gives me the estimate annual return on a
stock of 22.0%. I want to convert it to a compounded annual return. I
estimate it to be around 15 or 16%.
I don't understand. You seem to be misusing the terminology. A
stock's "annual return" is the same as its "compounded annualized
return". They are different only when the time period is different.
For example, if the stock price grew 22% over 4 years, we might
compute the annual return by either of the following formulas:
=rate(4, 0, -1, 1+22%)
=(1+22%)^(1/4) - 1
Note: You might need to set the Format to Percentage manually.
But if your estimate of 15-16% is close, that would suggest that you
have held the stock for only 16-17 months. That high end can be
estimated by:
=12*nper(15%, 0, -1, 1+22%)
Replace 15% with 16% to estimate the low end.
On the other hand, perhaps you mean that 22% is the "nominal" return
based on, for example, a monthly return of about 1.83% (22%/12).
In that case, the compounded monthly return can be annualized by
either of the following formulas:
=fv(22%/12, 12, 0, -1) - 1
=(1 + 22%/12)^12 - 1
Note: Again, you might need to set the Format to Percentage manually.
But that results in an annualized rate of more than 24%, not 15-16%.
Since somehow you estimated a smaller annualized rate, it would seem
that this is not the case you are asking about.