View source: R/yieldToMaturity.R
yield | R Documentation |
yield
Function which calculates the yield to maturity (YTM) for passed contract types.
yield(x, price, isPercentage, from)
x |
a contract type, for which to calculate the YTM. |
price |
a numeric, indicating the price used for calculating the YTM. |
isPercentage |
a logical, indicating if the 'price' is passed as percentage or not. (default is TRUE). |
from |
a character indicating the date as for which the YTM is calculated. |
a numeric, representing the yield to maturity (YTM) of the contract.
b <- bond("2013-12-31", maturity = "5 years", nominal = 50000,
coupon = 0.02, couponFreq = "1 years")
ytm <- yield(b, price = 100)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.