public final class IborFutureOptionSecurity extends Object implements Security, org.joda.beans.ImmutableBean, Serializable
An Ibor future option is a financial instrument that provides an option based on the future value of an Ibor index interest rate. The option is American, exercised at any point up to the exercise time. It handles options with either daily margining or upfront premium.
An Ibor future option is also known as a STIR future option (Short Term Interest Rate).
Strata uses decimal prices for Ibor future options in the trade model, pricers and market data. The decimal price is based on the decimal rate equivalent to the percentage. For example, an option price of 0.2 is related to a futures price of 99.32 that implies an interest rate of 0.68%. Strata represents the price of the future as 0.9932 and thus represents the price of the option as 0.002.
| Modifier and Type | Class and Description |
|---|---|
static class |
IborFutureOptionSecurity.Builder
The bean-builder for
IborFutureOptionSecurity. |
static class |
IborFutureOptionSecurity.Meta
The meta-bean for
IborFutureOptionSecurity. |
| Modifier and Type | Method and Description |
|---|---|
static IborFutureOptionSecurity.Builder |
builder()
Returns a builder used to create an instance of the bean.
|
IborFutureOptionPosition |
createPosition(PositionInfo positionInfo,
double longQuantity,
double shortQuantity,
ReferenceData refData)
Creates a position based on this security from a long and short quantity.
|
IborFutureOptionPosition |
createPosition(PositionInfo positionInfo,
double quantity,
ReferenceData refData)
Creates a position based on this security from a net quantity.
|
IborFutureOption |
createProduct(ReferenceData refData)
Creates the product associated with this security.
|
IborFutureOptionTrade |
createTrade(TradeInfo info,
double quantity,
double tradePrice,
ReferenceData refData)
Creates a trade based on this security.
|
boolean |
equals(Object obj) |
Currency |
getCurrency()
Gets the currency that the option is traded in.
|
LocalDate |
getExpiryDate()
Gets the expiry date of the option.
|
LocalTime |
getExpiryTime()
Gets the expiry time of the option.
|
ZoneId |
getExpiryZone()
Gets the time-zone of the expiry time.
|
SecurityInfo |
getInfo()
Gets the standard security information.
|
FutureOptionPremiumStyle |
getPremiumStyle()
Gets the style of the option premium.
|
PutCall |
getPutCall()
Gets whether the option is put or call.
|
Rounding |
getRounding()
Gets the definition of how to round the option price, defaulted to no rounding.
|
double |
getStrikePrice()
Gets the strike price, in decimal form.
|
SecurityId |
getUnderlyingFutureId()
Gets the identifier of the underlying future.
|
ImmutableSet<SecurityId> |
getUnderlyingIds()
Gets the set of underlying security identifiers.
|
int |
hashCode() |
static IborFutureOptionSecurity.Meta |
meta()
The meta-bean for
IborFutureOptionSecurity. |
IborFutureOptionSecurity.Meta |
metaBean() |
IborFutureOptionSecurity.Builder |
toBuilder()
Returns a builder that allows this bean to be mutated.
|
String |
toString() |
IborFutureOptionSecurity |
withInfo(SecurityInfo info)
Returns an instance with the specified info.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitgetSecurityIdpublic ImmutableSet<SecurityId> getUnderlyingIds()
SecurityThe set must contain all the security identifiers that this security directly refers to. For example, a bond future will return the identifiers of the underlying basket of bonds, but a bond future option will only return the identifier of the underlying future, not the basket.
getUnderlyingIds in interface Securitypublic IborFutureOptionSecurity withInfo(SecurityInfo info)
Securitypublic IborFutureOption createProduct(ReferenceData refData)
SecurityThe product of a security is distinct from the security. The product includes the financial details from this security, but excludes the additional information. The product also includes the products of any underlying securities.
createProduct in interface SecurityrefData - the reference data used to find underlying securitiespublic IborFutureOptionTrade createTrade(TradeInfo info, double quantity, double tradePrice, ReferenceData refData)
SecurityThis creates a trade of a suitable type for this security.
createTrade in interface Securityinfo - the trade informationquantity - the number of contracts in the tradetradePrice - the price agreed when the trade occurredrefData - the reference data used to find underlying securitiespublic IborFutureOptionPosition createPosition(PositionInfo positionInfo, double quantity, ReferenceData refData)
SecurityThis creates a position of a suitable type for this security.
createPosition in interface SecuritypositionInfo - the position informationquantity - the number of contracts in the positionrefData - the reference data used to find underlying securitiespublic IborFutureOptionPosition createPosition(PositionInfo positionInfo, double longQuantity, double shortQuantity, ReferenceData refData)
SecurityThis creates a position of a suitable type for this security.
The long quantity and short quantity must be zero or positive, not negative.
createPosition in interface SecuritypositionInfo - the position informationlongQuantity - the long quantity in the positionshortQuantity - the short quantity in the positionrefData - the reference data used to find underlying securitiespublic static IborFutureOptionSecurity.Meta meta()
IborFutureOptionSecurity.public static IborFutureOptionSecurity.Builder builder()
public IborFutureOptionSecurity.Meta metaBean()
metaBean in interface org.joda.beans.Beanpublic SecurityInfo getInfo()
This includes the security identifier.
public Currency getCurrency()
getCurrency in interface Securitypublic PutCall getPutCall()
A call gives the owner the right, but not obligation, to buy the underlying at an agreed price in the future. A put gives a similar option to sell.
public double getStrikePrice()
This is the price at which the option applies and refers to the price of the underlying future. The rate implied by the strike can take negative values.
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.
public LocalDate getExpiryDate()
The expiry date is related to the expiry time and time-zone. The date must not be after last trade date of the underlying future.
public LocalTime getExpiryTime()
The expiry time is related to the expiry date and time-zone.
public ZoneId getExpiryZone()
The expiry time-zone is related to the expiry date and time.
public FutureOptionPremiumStyle getPremiumStyle()
The two options are daily margining and upfront premium.
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.
public SecurityId getUnderlyingFutureId()
public IborFutureOptionSecurity.Builder toBuilder()
Copyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.