Value the 5% bond using the Baa yield you found
From the prior exercise, you found that the yield on comparable bonds is 4.29%.
Now that you know the yield, you can use this information to find the value of a Baa-rated bond on September 30, 2016 with a $100 par value, 5% coupon rate, and 5 years to maturity.
In this exercise, you will use the bondprc function you created in Chapter 1 to value the bond. The object you created in the previous exercise (baa_yield) is available in your workspace.
この演習はコースの一部です
Bond Valuation and Analysis in R
演習の手順
- Use
bondprc()to value your bond. Recall from Chapter One that thebondprc()function you created takes four arguments: the par value (p), the coupon rate (r), the time to maturity (ttm), and the yield of the bond (y).
実践的なインタラクティブ演習
このサンプルコードを完成させて、この演習に挑戦してみましょう。
# Value bond
bondprc(p = ___, r = ___, ttm = ___, y = ___)