| Contents | Index |
[Price, PriceTree] = fixedbyhw(HWTree,
CouponRate, Settle,
Maturity)
[Price, PriceTree] = fixedbyhw(HWTree,
CouponRate, Settle,
Maturity, Reset, Basis,
Principal, Options, EndMonthRule)
[Price, PriceTree] = fixedbyhw(HWTree,
CouponRate, Settle,
Maturity, Name,Value)
HWTree | Interest-rate tree structure created by hwtree. |
CouponRate | Decimal annual rate. |
Settle | Settlement dates. NINST-by-1 vector of dates representing the settlement dates of the fixed-rate note. |
Maturity | NINST-by-1 vector of dates representing the maturity dates of the fixed-rate note. |
Enter the following optional inputs using an ordered syntax or as name-value pair arguments. You cannot mix ordered syntax with name-value pair arguments.
Reset |
NINST-by-1 vector representing the frequency of payments per year. Default: 1 |
Basis |
Day-count basis of the instrument. A vector of integers.
For more information, see basis. Default: 0 (actual/actual) |
Principal |
The notional principal amount. Default: 100 |
Options |
Derivatives pricing options structure created with derivset. |
EndMonthRule |
End-of-month rule. A NINST-by-1 vector. This rule applies only when Maturity is an end-of-month date for a month having 30 or fewer days.
Default: 1 |
Specify optional comma-separated pairs of Name,Value arguments, where Name is the argument name and Value is the corresponding value. Name must appear inside single quotes (' '). You can specify several name and value pair arguments in any order as Name1,Value1,...,NameN,ValueN.
AdjustCashFlowsBasis |
Adjust the cash flows based on the actual period day count. NINST-by-1 of logicals. Default: False |
BusinessDayConvention |
Require payment dates to be business dates. NINST-by-1 cell array with possible choices of business day convention:
Default: actual |
Holidays |
Holidays used for business day convention. NHOLIDAYS-by-1 of MATLAB date numbers. Default: If no dates are specified, holidays.m is used. |
[Price, PriceTree] = fixedbyhw(HWTree, CouponRate, Settle, Maturity) computes the price of a fixed-rate note from a Hull-White tree.
[Price, PriceTree] = fixedbyhw(HWTree, CouponRate, Settle, Maturity, Reset, Basis, Principal, Options, EndMonthRule) computes the price of a fixed-rate note from a Hull-White tree using optional input arguments.
[Price, PriceTree] = fixedbyhw(HWTree, CouponRate, Settle, Maturity, Name,Value) computes the price of a price of a fixed-rate note from a Hull-White tree with additional options specified by one or more Name,Value pair arguments.
Price is an NINST-by-1 vector of expected prices of the fixed-rate note at time 0.
PriceTree is a structure of trees containing vectors of instrument prices and accrued interest, and a vector of observation times for each node.
PriceTree.PTree contains the clean prices.
PriceTree.AITree contains the accrued interest.
PriceTree.tObs contains the observation times.
The Settle date for every fixed-rate note is set to the ValuationDate of the HW tree. The fixed-rate note argument Settle is ignored.
Price a 5% fixed-rate note using a Hull-White interest-rate tree.
Load the file deriv.mat, which provides HWTree. The HWTree structure contains the time and interest-rate information needed to price the note.
load deriv.mat;
Set the required values. Other arguments will use defaults.
CouponRate = 0.05; Settle = '01-Jan-2005'; Maturity = '01-Jan-2006';
Use fixedbyhw to compute the price of the note.
Price = fixedbyhw(HWTree, CouponRate, Settle, Maturity) Price = 103.5126
bondbyhw | capbyhw | cfbyhw | floatbyhw | floorbyhw | hwtree | swapbyhw
View demos and recorded presentations led by industry experts.
Now On Demand
Network with industry peers and learn the latest applications of the leading software product for computational finance.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |