Exercise

Using the steepness of the price/yield line

In the previous video, you saw that you can plot a graph of bond prices against yields and check its steepness visually to determine where it has the highest duration.

In this exercise, you are going to replicate this plot yourself to see how bond yields affect bond duration. You will consider a 20 year bond with a 5% coupon and face value of USD 100.

numpy, numpy_financial, pandas, and matplotlib have already been imported for you as np, npf, pd, and plt, respectively.

Instructions 1/4

undefined XP
    1
    2
    3
    4
  • Create an array of bond yields from 0 to 20 in increment sizes of 0.1.
  • Convert this array into a pandas DataFrame called bond and name the column bond_yield.