powered by
This can be used to represent IBOR like indices (e.g. LIBOR, BBSW, CDOR) and extends the Index class.
Index
IborIndex(name, currency, tenor, spot_lag, calendar, day_basis, day_convention, is_eom)
the name of the index as a string
the currency associated with the index as a Currency object
the term of the index as a period
the period between the index's fixing and the start of the index's term
the calendar used to determine whether the index fixes on a given date as a Calendar
the day basis associated with the index (e.g. "act/365")
the day convention associated with the index (e.g. "mf")
a flag indicating whether or not the maturity date of the index is subject to the end-to-end convention.
an object of class IborIndex that inherits from Index
IborIndex
# NOT RUN { library(lubridate) library(fmdates) # 3m AUD BBSW IborIndex("BBSW", AUD(), months(3), days(0), c(AUSYCalendar()), "act/365", "ms", FALSE) # }
Run the code above in your browser using DataLab