| Fixed-Income Toolbox™ | ![]() |
Dcurve = IRDataCurve.bootstrap(Type, Settle, InstrumentTypes, Instruments) Dcurve = IRDataCurve.bootstrap(Type, Settle, InstrumentTypes, Instruments, 'Parameter1', Value1, 'Parameter2', Value2, ...)
| Type | Type of interest-rate curve. Acceptable values are forward or zero. |
| Settle | Scalar or column vector of settlement dates. |
| InstrumentTypes | N-by-1 cell array (where N is the number of instruments) indicating what kind of instrument is in the Instruments matrix. Acceptable values are deposit, futures, swap, and bond. |
| Instruments | N-by-3 data matrix for Instruments where the first column is Settle date, the second column is Maturity, and the third column is the market quote (dates must be MATLAB date numbers). |
| Compounding | (Optional) Compounding value for an IRDataCurve object:
|
| Basis | (Optional) Day-count basis of the interest-rate curve. A vector of integers.
|
| InterpMethod | (Optional) Values are:
|
| IRBootstrapOptionsObj | (Optional) An IRBootstrapOptions object. |
For each of the supported InstrumentTypes, you can specify the following additional instrument parameters as parameter/value pairs by prepending the word Instrument to the parameter field. For example, prepending InstrumentBasis distinguishes an instrument's Basis value from the curve's Basis value.
CouponRate | (Optional) Decimal number indicating the annual percentage rate used to determine the coupons payable on an instrument. |
Period | (Optional) Coupons per year of the instrument. A vector of integers. Allowed values are 0, 1, 2 (default), 3, 4, 6, and 12. |
Basis | (Optional) Day-count basis of the instrument. A vector of integers.
|
EndMonthRule | (Optional) End-of-month rule. A vector. This rule applies only when Maturity is an end-of-month date for a month having 30 or fewer days. 0 = ignore rule, meaning that an instrument's coupon payment date is always the same numerical day of the month. 1 = set rule on (default), meaning that an instrument's coupon payment date is always the last actual day of the month. |
IssueDate | (Optional) Date when an instrument was issued. |
FirstCouponDate | (Optional) Date when an instrument makes its first coupon payment. When FirstCouponDate and LastCouponDate are both specified, FirstCouponDate takes precedence in determining the coupon payment structure. |
LastCouponDate | (Optional) Last coupon date of an instrument before the maturity date. In the absence of a specified FirstCouponDate, a specified LastCouponDate determines the coupon structure of the instrument. The coupon structure of an instrument is truncated at the LastCouponDate regardless of where it falls and will be followed only by the instrument's maturity cash flow date. |
Face | (Optional) Face or par value. Default = 100. |
Note When using Instrument parameter/value pairs, you can specify simple interest for an Instrument by specifying the InstrumentPeriod value as 0. If InstrumentBasis and InstrumentPeriod are not specified for an Instrument, the following default values are used:
|
Dcurve = IRDataCurve.bootstrap(Type, Settle, InstrumentTypes, Instruments, 'Parameter1', Value1, 'Parameter2', Value2, ...) bootstraps an interest-rate curve from market data. The dates of the bootstrapped curve correspond to the maturity dates of the input instruments. You must enter the optional arguments for Basis, Compounding, Interpmethod, and IRBootstrapOptionsObj as parameter/value pairs.
In this bootstrapping example, InstrumentTypes, Instruments, and a Settle date are defined:
InstrumentTypes = {'Deposit';'Deposit';...
'Futures';'Futures';'Futures';'Futures';'Futures';'Futures';...
'Swap';'Swap';'Swap';'Swap';};
Instruments = [datenum('08/10/2007'),datenum('09/17/2007'),.0532000; ...
datenum('08/10/2007'),datenum('11/17/2007'),.0535866; ...
datenum('08/08/2007'),datenum('19-Dec-2007'),9485; ...
datenum('08/08/2007'),datenum('19-Mar-2008'),9502; ...
datenum('08/08/2007'),datenum('18-Jun-2008'),9509.5; ...
datenum('08/08/2007'),datenum('17-Sep-2008'),9509; ...
datenum('08/08/2007'),datenum('17-Dec-2008'),9505.5; ...
datenum('08/08/2007'),datenum('18-Mar-2009'),9501; ...
datenum('08/08/2007'),datenum('08/08/2014'),.0530; ...
datenum('08/08/2007'),datenum('08/08/2019'),.0551; ...
datenum('08/08/2007'),datenum('08/08/2027'),.0565; ...
datenum('08/08/2007'),datenum('08/08/2037'),.0566];
CurveSettle = datenum('08/10/2007');Use the bootstrap method to create an IRDataCurve object.
bootModel = IRDataCurve.bootstrap('Forward', CurveSettle, ...
InstrumentTypes, Instruments,'InterpMethod','pchip');
Norm of First-order
Iteration Func-count f(x) step optimality CG-iterations
0 5 0.00231302 0.0308
1 10 0.000107824 0.0671538 0.000644 0
2 15 3.03656e-005 0.11601 2.31e-005 0
3 20 1.61629e-005 0.086194 1.92e-005 0
4 25 1.38546e-005 0.0279879 0.000297 0
5 30 7.80121e-006 0.0773591 1.15e-005 0
6 35 6.76987e-006 0.0395536 6.77e-006 0
7 40 6.31327e-006 0.0312563 3.91e-006 0
Optimization terminated: relative function value
changing by less than OPTIONS.TolFun.
To create the plot for the bootstrapped market data:
PlottingDates = (datenum('08/11/2007'):30:CurveSettle+365*25)';
plot(PlottingDates,bootModel.getParYields(PlottingDates),'r')
datetick

For an example of bootstrapping using instrument parameters support for prepending the word Instrument to the parameter field, see Using IRDataCurve bootstrap Method for Bootstrapping Based on Market Instruments.
@IRDataCurve, @IRBootstrapOptions
![]() | bkput | cbprice | ![]() |
| © 1984-2009- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |