Schedule {RQuantLib} | R Documentation |
Schedule generation
Description
The Schedule
function generates a schedule of dates conformant to
a given convention in a given calendar.
Usage
## Default S3 method:
Schedule(params)
Arguments
params |
a named list, QuantLib's parameters of the schedule.
See example below. |
Details
Please see any decent Finance textbook for background reading, and the
QuantLib
documentation for details on the QuantLib
implementation.
Value
The Schedule
function returns an object of class
Schedule
. It contains the list of dates in the schedule.
Author(s)
Michele Salvadore michele.salvadore@gmail.com for the inplementation;
Dirk Eddelbuettel edd@debian.org for the R interface;
the QuantLib Group for QuantLib
References
https://www.quantlib.org/ for details on QuantLib
.
See Also
Examples
params <- list(effectiveDate=as.Date("2004-11-30"),
maturityDate=as.Date("2008-11-30"),
period='Semiannual',
calendar='UnitedStates/GovernmentBond',
businessDayConvention='Unadjusted',
terminationDateConvention='Unadjusted',
dateGeneration='Forward',
endOfMonth=1)
Schedule(params)
[Package RQuantLib version 0.4.23 Index]