Bond Valuation and Analysis in R
Clifford Ang
Senior Vice President, Compass Lexecon
fv
) one and two years from now can be calculated as:fv1 <- pv * (1 + r)
fv2 <- pv * (1 + r) * (1 + r)
r
- interest rate
pv
- present value
pv <- fv1 / (1 + r)
pv <- fv2 / ((1 + r) * (1 + r))
r
- interest rate
fv1
- future value 1 year from now, fv2
- future value 2 years from now
Bond Valuation and Analysis in R