Class ResolvedIborFuture
- java.lang.Object
 - 
- com.opengamma.strata.product.index.ResolvedIborFuture
 
 
- 
- All Implemented Interfaces:
 ResolvedProduct,Serializable,org.joda.beans.Bean,org.joda.beans.ImmutableBean
public final class ResolvedIborFuture extends Object implements ResolvedProduct, org.joda.beans.ImmutableBean, Serializable
A futures contract based on an Ibor index, resolved for pricing.This is the resolved form of
IborFutureand is an input to the pricers. Applications will typically create aResolvedIborFuturefrom aIborFutureusingIborFuture.resolve(ReferenceData).A
ResolvedIborFutureis 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.Price
The price of an Ibor future is based on the interest rate of the underlying index. It is defined as(100 - percentRate).Strata uses decimal prices for Ibor futures in the trade model, pricers and market data. The decimal price is based on the decimal rate equivalent to the percentage. For example, a price of 99.32 implies an interest rate of 0.68% which is represented in Strata by 0.9932.
- See Also:
 - Serialized Form
 
 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Class Description static classResolvedIborFuture.BuilderThe bean-builder forResolvedIborFuture.static classResolvedIborFuture.MetaThe meta-bean forResolvedIborFuture. 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResolvedIborFuture.Builderbuilder()Returns a builder used to create an instance of the bean.booleanequals(Object obj)doublegetAccrualFactor()Gets the accrual factor, defaulted from the index if not set.CurrencygetCurrency()Gets the currency that the future is traded in.IborRateComputationgetIborRate()Gets the Ibor rate observation.IborIndexgetIndex()Gets the Ibor index that the future is based on.LocalDategetLastTradeDate()Gets the last date of trading, which is the same as the fixing date.doublegetNotional()Gets the notional amount.RoundinggetRounding()Gets the definition of how to round the futures price, defaulted to no rounding.SecurityIdgetSecurityId()Gets the security identifier.inthashCode()static ResolvedIborFuture.Metameta()The meta-bean forResolvedIborFuture.ResolvedIborFuture.MetametaBean()ResolvedIborFuture.BuildertoBuilder()Returns a builder that allows this bean to be mutated.StringtoString() 
 - 
 
- 
- 
Method Detail
- 
getIndex
public IborIndex getIndex()
Gets the Ibor index that the future is based on.- Returns:
 - the Ibor index
 
 
- 
getLastTradeDate
public LocalDate getLastTradeDate()
Gets the last date of trading, which is the same as the fixing date.This is typically 2 business days before the IMM date (3rd Wednesday of the month). By including this method, it allows for the possibility of a future where the fixing date and last trade date differ.
- Returns:
 - the last trade date
 
 
- 
meta
public static ResolvedIborFuture.Meta meta()
The meta-bean forResolvedIborFuture.- Returns:
 - the meta-bean, not null
 
 
- 
builder
public static ResolvedIborFuture.Builder builder()
Returns a builder used to create an instance of the bean.- Returns:
 - the builder, not null
 
 
- 
metaBean
public ResolvedIborFuture.Meta metaBean()
- Specified by:
 metaBeanin interfaceorg.joda.beans.Bean
 
- 
getSecurityId
public SecurityId getSecurityId()
Gets the security identifier.This identifier uniquely identifies the security within the system.
- Returns:
 - the value of the property, not null
 
 
- 
getCurrency
public Currency getCurrency()
Gets the currency that the future is traded in.- Returns:
 - the value of the property, not null
 
 
- 
getNotional
public double getNotional()
Gets the notional amount.This is the full notional of the deposit, such as 1 million dollars. The notional expressed here must be positive. The currency of the notional is specified by
currency.- Returns:
 - the value of the property
 
 
- 
getAccrualFactor
public double getAccrualFactor()
Gets the accrual factor, defaulted from the index if not set.This is the year fraction of the contract, typically 0.25 for a 3 month deposit.
When building, this will default to the number of months in the index divided by 12 if not specified. However, if the index is not month-based, no defaulting will occur.
- Returns:
 - the value of the property
 
 
- 
getIborRate
public IborRateComputation getIborRate()
Gets the Ibor rate observation.The future is based on this index. It will be a well known market index such as 'USD-LIBOR-3M'.
- Returns:
 - the value of the property, not null
 
 
- 
getRounding
public Rounding getRounding()
Gets the definition of how to round the futures price, defaulted to no rounding.The price is represented in decimal form, not percentage form. As such, the decimal places expressed by the rounding refers to this decimal form. For example, the common market price of 99.7125 for a 0.2875% rate is represented as 0.997125 which has 6 decimal places.
- Returns:
 - the value of the property, not null
 
 
- 
toBuilder
public ResolvedIborFuture.Builder toBuilder()
Returns a builder that allows this bean to be mutated.- Returns:
 - the mutable builder, not null
 
 
 - 
 
 -