ComeçarComece de graça

Find AAA bond yields as of September 30, 2016

In this comprehensive example, you will value a bond with a $100 par value, 3% coupon rate, and 8 years to maturity. This bond was rated Aaa by Moody's and it was issued on September 30, 2016. You have determined that this bond's yield is comparable to the yield of bonds with a Aaa rating.

In this exercise, use the getSymbols() command to obtain the yield of Moody's Aaa index on September 30, 2016 and store that value in an object labeled aaa_yield.

Este exercício faz parte do curso

Bond Valuation and Analysis in R

Ver curso

Instruções do exercício

  • Use library() to load the quantmod package.
  • Use the getSymbols() command to obtain Moody's AAA index yield ("DAAA") data.
  • Identify the yield for aaa on September 30, 2016 using square brackets. Save this to aaa_yield.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Load quantmod package


# Obtain Moody's Aaa yield
aaa <-

# Identify the yield on September 30, 2016
aaa_yield <-

aaa_yield
Editar e executar o código