Section 5.2 Dollar-Weighted Rate of Return
In general, for a sequence of investments starting with an initial investment of V0 at time 0 and subsequent investments (i.e. cash flows) of value C1,C2,...,Cn at times t1,t2,...,tn then the future value of these at time t is given by
A=V0(1+r)t+n∑k=1Ck(1+r)t−tk.
One can approximate this equation with an easier one using "linearization" where one replaces (1+r)t with it's first-order Taylor approximation 1+rt. This gives
A=V0(1+rt)+n∑k=1Ck(1+r(t−tk))
which is the future value of the investments if only simple interest were used. Solving for the interest rate yields the "dollar weighted rate of return"
r=A−V0−∑nk=1CkV0t+∑nk=1(t−tk)Ck.
For these, V0 can be thought of as the initial valance in the account and Ck as deposits made at times tk
Example 5.2.1. Dollar Weighted Rate of Return.
On January 1, 2000, the balance in an account is $25200. On April 1, 2000, $500 is deposited in this account and on July 1, 2001, a withdrawl of $1000 is made. The balance in the account on October 1, 2001 is $25900. Determine the annual rate of ionterest in this account according to the dollar-weighted method.
So, the cashflow has the following:
Investment25200500−1000Time03/1218/12
with a future value of A=$25900. Therefore, the annual dollar-weighted rate of interest is
r=25900−25200−500+100025200(21/12)+500(18/12)−1000(3/12)≈0.026906.
xxxxxxxxxx
pretty_print('Dollar Weighted Annual Rate of Return')
c=1
def _(n = slider(1,10,1,3,label='Number of Investment Changes')):
layout=dict(top=[['M','FV'],['endtime']])) (
def __(M=('Investment / Time ', input_grid(2, n, default = [[25200,500,-1000,0,0,0,0,0,0,0,0],[0,3/12,18/12,2,3,4,5,6,7,8]])),
FV = input_box(25900,label='Final Value',width=15),
endtime = input_box(21/12,label='Final time (yrs)',width=8)):
pretty_print(html('State of Investments'))
Inv = M[0][0:n]
times = M[1][0:n]
A = matrix(QQ,[Inv,times])
show(A)
top = FV - Inv[0]
bot = Inv[0]*endtime
for k in range(1,n):
top = top - Inv[k]
bot = bot + Inv[k]*(endtime-times[k])
r = (top/bot).n()
pretty_print(html('The Dollar-Weighted Rate of Return = %1.6f'%r))