public final class ResolvedFixedCouponBond extends Object implements ResolvedProduct, org.joda.beans.ImmutableBean, Serializable
This is the resolved form of FixedCouponBond and is an input to the pricers.
Applications will typically create a ResolvedFixedCouponBond from a FixedCouponBond
using FixedCouponBond.resolve(ReferenceData).
The list of FixedCouponBondPaymentPeriod represents the periodic coupon payments,
whereas the nominal payment is defined by Payment.
The legal entity of this fixed coupon bond is identified by StandardId.
The enum, FixedCouponBondYieldConvention, specifies the yield computation convention.
A ResolvedFixedCouponBond is bound to data that changes over time, such as holiday calendars.
If the data changes, such as the addition of a new holiday, the resolved form will not be updated.
Care must be taken when placing the resolved form in a cache or persistence layer.
| Modifier and Type | Class and Description |
|---|---|
static class |
ResolvedFixedCouponBond.Builder
The bean-builder for
ResolvedFixedCouponBond. |
static class |
ResolvedFixedCouponBond.Meta
The meta-bean for
ResolvedFixedCouponBond. |
| Modifier and Type | Method and Description |
|---|---|
static ResolvedFixedCouponBond.Builder |
builder()
Returns a builder used to create an instance of the bean.
|
boolean |
equals(Object obj) |
Optional<FixedCouponBondPaymentPeriod> |
findPeriod(LocalDate date)
Finds the period that contains the specified date.
|
Currency |
getCurrency()
Gets the currency of the product.
|
DayCount |
getDayCount()
Gets the day count convention applicable.
|
LocalDate |
getEndDate()
Gets the end date of the product.
|
double |
getFixedRate()
Gets the fixed coupon rate.
|
Frequency |
getFrequency()
Gets the frequency of the bond payments.
|
LegalEntityId |
getLegalEntityId()
Gets the legal entity identifier.
|
Payment |
getNominalPayment()
Gets the nominal payment of the product.
|
double |
getNotional()
Gets the notional amount, must be positive.
|
ImmutableList<FixedCouponBondPaymentPeriod> |
getPeriodicPayments()
Gets the periodic payments of the product.
|
RollConvention |
getRollConvention()
Gets the roll convention of the bond payments.
|
SecurityId |
getSecurityId()
Gets the security identifier.
|
DaysAdjustment |
getSettlementDateOffset()
Gets the number of days between valuation date and settlement date.
|
LocalDate |
getStartDate()
Gets the start date of the product.
|
LocalDate |
getUnadjustedEndDate()
The unadjusted end date.
|
LocalDate |
getUnadjustedStartDate()
The unadjusted start date.
|
FixedCouponBondYieldConvention |
getYieldConvention()
Gets yield convention.
|
boolean |
hasExCouponPeriod()
Checks if there is an ex-coupon period.
|
int |
hashCode() |
static ResolvedFixedCouponBond.Meta |
meta()
The meta-bean for
ResolvedFixedCouponBond. |
ResolvedFixedCouponBond.Meta |
metaBean() |
ResolvedFixedCouponBond.Builder |
toBuilder()
Returns a builder that allows this bean to be mutated.
|
String |
toString() |
double |
yearFraction(LocalDate startDate,
LocalDate endDate)
Calculates the year fraction within the specified period.
|
public LocalDate getStartDate()
This is the first coupon period date of the bond, often known as the effective date. This date has been adjusted to be a valid business day.
public LocalDate getEndDate()
This is the last coupon period date of the bond, often known as the maturity date. This date has been adjusted to be a valid business day.
public LocalDate getUnadjustedStartDate()
This is the unadjusted first coupon period date of the bond.
public LocalDate getUnadjustedEndDate()
This is the unadjusted last coupon period date of the bond.
public Currency getCurrency()
All payments in the bond will have this currency.
public double getNotional()
The notional expressed here must be positive.
The currency of the notional is specified by getCurrency().
public boolean hasExCouponPeriod()
public Optional<FixedCouponBondPaymentPeriod> findPeriod(LocalDate date)
The search is performed using unadjusted dates.
date - the date to find the period forIllegalArgumentException - if more than one period matchespublic double yearFraction(LocalDate startDate, LocalDate endDate)
Year fractions on bonds are calculated on unadjusted dates.
startDate - the start dateendDate - the end dateIllegalArgumentException - if the dates are outside the range of the bond or start is after endpublic static ResolvedFixedCouponBond.Meta meta()
ResolvedFixedCouponBond.public static ResolvedFixedCouponBond.Builder builder()
public ResolvedFixedCouponBond.Meta metaBean()
metaBean in interface org.joda.beans.Beanpublic SecurityId getSecurityId()
This identifier uniquely identifies the security within the system.
public Payment getNominalPayment()
The payment date of the nominal payment agrees with the final coupon payment date of the periodic payments.
public ImmutableList<FixedCouponBondPaymentPeriod> getPeriodicPayments()
Each payment period represents part of the life-time of the product. The start date and end date of the leg are determined from the first and last period. As such, the periods should be sorted.
public Frequency getFrequency()
This must match the frequency used to generate the payment schedule.
public RollConvention getRollConvention()
This must match the convention used to generate the payment schedule.
public double getFixedRate()
The periodic payments are based on this fixed coupon rate.
public DayCount getDayCount()
The conversion from dates to a numerical value is made based on this day count. For the fixed bond, the day count convention is used to compute accrued interest.
Note that the year fraction of a coupon payment is computed based on the unadjusted dates in the schedule.
public FixedCouponBondYieldConvention getYieldConvention()
The convention defines how to convert from yield to price and inversely.
public LegalEntityId getLegalEntityId()
This identifier is used for the legal entity that issues the bond.
public DaysAdjustment getSettlementDateOffset()
This is used to compute clean price. The clean price is the relative price to be paid at the standard settlement date in exchange for the bond.
It is usually one business day for US treasuries and UK Gilts and three days for Euroland government bonds.
public ResolvedFixedCouponBond.Builder toBuilder()
Copyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.