public final class IborFuture extends Object implements SecuritizedProduct, Resolvable<ResolvedIborFuture>, org.joda.beans.ImmutableBean, Serializable
An Ibor future is a financial instrument that is based on the future value of an Ibor index interest rate. The profit or loss of an Ibor future is settled daily. An Ibor future is also known as a STIR future (Short Term Interest Rate). This class represents the structure of a single futures contract.
For example, the widely traded "CME Eurodollar futures contract" has a notional of 1 million USD, is based on the USD Libor 3 month rate 'USD-LIBOR-3M', expiring two business days before an IMM date (the 3rd Wednesday of the month).
(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.
| Modifier and Type | Class and Description |
|---|---|
static class |
IborFuture.Builder
The bean-builder for
IborFuture. |
static class |
IborFuture.Meta
The meta-bean for
IborFuture. |
| Modifier and Type | Method and Description |
|---|---|
static IborFuture.Builder |
builder()
Returns a builder used to create an instance of the bean.
|
boolean |
equals(Object obj) |
double |
getAccrualFactor()
Gets the accrual factor, defaulted from the index if not set.
|
Currency |
getCurrency()
Gets the currency that the future is traded in, defaulted from the index if not set.
|
LocalDate |
getFixingDate()
Gets the applicable fixing date.
|
IborIndex |
getIndex()
Gets the underlying Ibor index.
|
LocalDate |
getLastTradeDate()
Gets the last date of trading.
|
double |
getNotional()
Gets the notional amount.
|
Rounding |
getRounding()
Gets the definition of how to round the futures price, defaulted to no rounding.
|
SecurityId |
getSecurityId()
Gets the security identifier.
|
int |
hashCode() |
static IborFuture.Meta |
meta()
The meta-bean for
IborFuture. |
IborFuture.Meta |
metaBean() |
ResolvedIborFuture |
resolve(ReferenceData refData) |
IborFuture.Builder |
toBuilder()
Returns a builder that allows this bean to be mutated.
|
String |
toString() |
clone, finalize, getClass, notify, notifyAll, wait, wait, waitallCurrenciesallPaymentCurrencies, isCrossCurrencypublic LocalDate getFixingDate()
This returns the fixing date of the contract. This implementation simply returns the last trade date. By including this method, it allows for the possibility of a future where the fixing date and last trade date differ.
public ResolvedIborFuture resolve(ReferenceData refData)
resolve in interface Resolvable<ResolvedIborFuture>public static IborFuture.Meta meta()
IborFuture.public static IborFuture.Builder builder()
public IborFuture.Meta metaBean()
metaBean in interface org.joda.beans.Beanpublic SecurityId getSecurityId()
This identifier uniquely identifies the security within the system.
getSecurityId in interface SecuritizedProductpublic Currency getCurrency()
getCurrency in interface SecuritizedProductpublic double getNotional()
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.
public double getAccrualFactor()
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.
public LocalDate getLastTradeDate()
public IborIndex getIndex()
The future is based on this index. It will be a well known market index such as 'USD-LIBOR-3M'.
public Rounding getRounding()
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.
public IborFuture.Builder toBuilder()
Copyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.