[QuantLibAddin-cvs] QuantLibAddin/gensrc/metadata schedule.xml, 1.10, 1.11
Brought to you by:
ericehlers,
nando
|
From: Cristina D. <cdu...@us...> - 2006-09-05 08:50:53
|
Update of /cvsroot/quantlibaddin/QuantLibAddin/gensrc/metadata In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv14527/gensrc/metadata Modified Files: schedule.xml Log Message: added qlSchedule2 and corresponding new Schedule constructor Index: schedule.xml =================================================================== RCS file: /cvsroot/quantlibaddin/QuantLibAddin/gensrc/metadata/schedule.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** schedule.xml 4 Sep 2006 19:21:04 -0000 1.10 --- schedule.xml 5 Sep 2006 08:50:47 -0000 1.11 *************** *** 60,63 **** --- 60,120 ---- </Constructor> + <Constructor name='qlSchedule2'> + <libraryFunction>Schedule</libraryFunction> + <supportedPlatforms> + <supportedPlatform>excel</supportedPlatform> + <supportedPlatform>calc</supportedPlatform> + </supportedPlatforms> + <ParameterList> + <Parameters> + <Parameter name='effectiveDate' libraryType='QuantLib::Date'> + <type>long</type> + <tensorRank>scalar</tensorRank> + <description>effective date</description> + </Parameter> + <Parameter name='terminationDate' libraryType='QuantLib::Date'> + <type>long</type> + <tensorRank>scalar</tensorRank> + <description>termination date</description> + </Parameter> + <Parameter name='tenor' libraryType='QuantLib::Period'> + <type>string</type> + <tensorRank>scalar</tensorRank> + <description>tenor (e.g. 2D for two days , 3W for three weeks, 6M for six months, 1Y for one year)</description> + </Parameter> + <Parameter name='calendar' enumeration='QuantLib::Calendar'> + <type>string</type> + <tensorRank>scalar</tensorRank> + <description>holiday calendar (e.g. TARGET)</description> + </Parameter> + <Parameter name='convention' enumeration='QuantLib::BusinessDayConvention'> + <type>string</type> + <tensorRank>scalar</tensorRank> + <description>business day convention</description> + </Parameter> + <Parameter name='backward' default='1'> + <type>bool</type> + <tensorRank>scalar</tensorRank> + <description>backward generation of the schedule. By default, TRUE.</description> + </Parameter> + <Parameter name='endOfMonth' default='0'> + <type>bool</type> + <tensorRank>scalar</tensorRank> + <description>end of month convention. By default, FALSE.</description> + </Parameter> + <Parameter name='firstDate' libraryType='QuantLib::Date' default='0'> + <type>long</type> + <tensorRank>scalar</tensorRank> + <description>stub date, if there is an up front stub period</description> + </Parameter> + <Parameter name='nextToLastDate' libraryType='QuantLib::Date' default='0'> + <type>long</type> + <tensorRank>scalar</tensorRank> + <description>stub date, if there is an in-arrears stub period</description> + </Parameter> + </Parameters> + </ParameterList> + </Constructor> + <Member name='qlScheduleDates' libraryClass='Schedule'> <description>return schedule dates</description> |