/** * Copyright (C) 2015 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.strata.pricer.swaption; import java.io.Serializable; import java.time.LocalDate; import java.time.ZonedDateTime; import java.util.Map; import java.util.NoSuchElementException; import java.util.Optional; import java.util.Set; import org.joda.beans.Bean; import org.joda.beans.BeanBuilder; import org.joda.beans.BeanDefinition; import org.joda.beans.ImmutableBean; import org.joda.beans.ImmutableConstructor; import org.joda.beans.JodaBeanUtils; import org.joda.beans.MetaProperty; import org.joda.beans.Property; import org.joda.beans.PropertyDefinition; import org.joda.beans.impl.direct.DirectFieldsBeanBuilder; import org.joda.beans.impl.direct.DirectMetaBean; import org.joda.beans.impl.direct.DirectMetaProperty; import org.joda.beans.impl.direct.DirectMetaPropertyMap; import com.opengamma.strata.basics.date.DayCount; import com.opengamma.strata.collect.ArgChecker; import com.opengamma.strata.data.MarketDataName; import com.opengamma.strata.market.ValueType; import com.opengamma.strata.market.param.CurrencyParameterSensitivities; import com.opengamma.strata.market.param.CurrencyParameterSensitivity; import com.opengamma.strata.market.param.ParameterMetadata; import com.opengamma.strata.market.param.ParameterPerturbation; import com.opengamma.strata.market.param.UnitParameterSensitivity; import com.opengamma.strata.market.sensitivity.PointSensitivities; import com.opengamma.strata.market.sensitivity.PointSensitivity; import com.opengamma.strata.market.surface.InterpolatedNodalSurface; import com.opengamma.strata.market.surface.Surface; import com.opengamma.strata.market.surface.SurfaceInfoType; import com.opengamma.strata.market.surface.Surfaces; import com.opengamma.strata.pricer.impl.option.NormalFormulaRepository; import com.opengamma.strata.product.common.PutCall; import com.opengamma.strata.product.swap.type.FixedIborSwapConvention; /** * Volatility for swaptions in the normal or Bachelier model based on a surface. * <p> * The volatility is represented by a surface on the expiry and strike dimensions. */ @BeanDefinition(builderScope = "private") public final class NormalSwaptionExpiryStrikeVolatilities implements NormalSwaptionVolatilities, ImmutableBean, Serializable { /** * The swap convention that the volatilities are to be used for. */ @PropertyDefinition(validate = "notNull", overrideGet = true) private final FixedIborSwapConvention convention; /** * The valuation date-time. * <p> * The volatilities are calibrated for this date-time. */ @PropertyDefinition(validate = "notNull", overrideGet = true) private final ZonedDateTime valuationDateTime; /** * The normal volatility surface. * <p> * The x-value of the surface is the expiry, as a year fraction. * The y-value of the surface is the strike, as a rate. */ @PropertyDefinition(validate = "notNull") private final Surface surface; /** * The day count convention of the surface. */ private final transient DayCount dayCount; // cached, not a property //------------------------------------------------------------------------- /** * Obtains an instance from the implied volatility surface and the date-time for which it is valid. * <p> * The surface is specified by an instance of {@link Surface}, such as {@link InterpolatedNodalSurface}. * The surface must contain the correct metadata: * <ul> * <li>The x-value type must be {@link ValueType#YEAR_FRACTION} * <li>The y-value type must be {@link ValueType#STRIKE} * <li>The z-value type must be {@link ValueType#NORMAL_VOLATILITY} * <li>The day count must be set in the additional information using {@link SurfaceInfoType#DAY_COUNT} * </ul> * Suitable surface metadata can be created using * {@link Surfaces#normalVolatilityByExpiryStrike(String, DayCount)}. * * @param convention the swap convention that the volatilities are to be used for * @param valuationDateTime the valuation date-time * @param surface the implied volatility surface * @return the volatilities */ public static NormalSwaptionExpiryStrikeVolatilities of( FixedIborSwapConvention convention, ZonedDateTime valuationDateTime, Surface surface) { return new NormalSwaptionExpiryStrikeVolatilities(convention, valuationDateTime, surface); } @ImmutableConstructor private NormalSwaptionExpiryStrikeVolatilities( FixedIborSwapConvention convention, ZonedDateTime valuationDateTime, Surface surface) { ArgChecker.notNull(convention, "convention"); ArgChecker.notNull(valuationDateTime, "valuationDateTime"); ArgChecker.notNull(surface, "surface"); surface.getMetadata().getXValueType().checkEquals( ValueType.YEAR_FRACTION, "Incorrect x-value type for Normal volatilities"); surface.getMetadata().getYValueType().checkEquals( ValueType.STRIKE, "Incorrect y-value type for Normal volatilities"); surface.getMetadata().getZValueType().checkEquals( ValueType.NORMAL_VOLATILITY, "Incorrect z-value type for Normal volatilities"); DayCount dayCount = surface.getMetadata().findInfo(SurfaceInfoType.DAY_COUNT) .orElseThrow(() -> new IllegalArgumentException("Incorrect surface metadata, missing DayCount")); this.valuationDateTime = valuationDateTime; this.surface = surface; this.convention = convention; this.dayCount = dayCount; } // ensure standard constructor is invoked private Object readResolve() { return new NormalSwaptionExpiryStrikeVolatilities(convention, valuationDateTime, surface); } //------------------------------------------------------------------------- @Override public SwaptionVolatilitiesName getName() { return SwaptionVolatilitiesName.of(surface.getName().getName()); } @Override public <T> Optional<T> findData(MarketDataName<T> name) { if (surface.getName().equals(name)) { return Optional.of(name.getMarketDataType().cast(surface)); } return Optional.empty(); } @Override public int getParameterCount() { return surface.getParameterCount(); } @Override public double getParameter(int parameterIndex) { return surface.getParameter(parameterIndex); } @Override public ParameterMetadata getParameterMetadata(int parameterIndex) { return surface.getParameterMetadata(parameterIndex); } @Override public NormalSwaptionExpiryStrikeVolatilities withParameter(int parameterIndex, double newValue) { return new NormalSwaptionExpiryStrikeVolatilities( convention, valuationDateTime, surface.withParameter(parameterIndex, newValue)); } @Override public NormalSwaptionExpiryStrikeVolatilities withPerturbation(ParameterPerturbation perturbation) { return new NormalSwaptionExpiryStrikeVolatilities( convention, valuationDateTime, surface.withPerturbation(perturbation)); } //------------------------------------------------------------------------- @Override public double volatility(double expiry, double tenor, double strike, double forwardRate) { return surface.zValue(expiry, strike); } @Override public CurrencyParameterSensitivities parameterSensitivity(PointSensitivities pointSensitivities) { CurrencyParameterSensitivities sens = CurrencyParameterSensitivities.empty(); for (PointSensitivity point : pointSensitivities.getSensitivities()) { if (point instanceof SwaptionSensitivity) { SwaptionSensitivity pt = (SwaptionSensitivity) point; if (pt.getVolatilitiesName().equals(getName())) { sens = sens.combinedWith(parameterSensitivity(pt)); } } } return sens; } private CurrencyParameterSensitivity parameterSensitivity(SwaptionSensitivity point) { double expiry = point.getExpiry(); double strike = point.getStrike(); UnitParameterSensitivity unitSens = surface.zValueParameterSensitivity(expiry, strike); return unitSens.multipliedBy(point.getCurrency(), point.getSensitivity()); } //------------------------------------------------------------------------- @Override public double price(double expiry, double tenor, PutCall putCall, double strike, double forward, double volatility) { return NormalFormulaRepository.price(forward, strike, expiry, volatility, putCall); } @Override public double priceDelta(double expiry, double tenor, PutCall putCall, double strike, double forward, double volatility) { return NormalFormulaRepository.delta(forward, strike, expiry, volatility, putCall); } @Override public double priceGamma(double expiry, double tenor, PutCall putCall, double strike, double forward, double volatility) { return NormalFormulaRepository.gamma(forward, strike, expiry, volatility, putCall); } @Override public double priceTheta(double expiry, double tenor, PutCall putCall, double strike, double forward, double volatility) { return NormalFormulaRepository.theta(forward, strike, expiry, volatility, putCall); } @Override public double priceVega(double expiry, double tenor, PutCall putCall, double strike, double forward, double volatility) { return NormalFormulaRepository.vega(forward, strike, expiry, volatility, putCall); } //------------------------------------------------------------------------- @Override public double relativeTime(ZonedDateTime dateTime) { ArgChecker.notNull(dateTime, "dateTime"); LocalDate valuationDate = valuationDateTime.toLocalDate(); LocalDate date = dateTime.toLocalDate(); return dayCount.relativeYearFraction(valuationDate, date); } @Override public double tenor(LocalDate startDate, LocalDate endDate) { // rounded number of months. the rounding is to ensure that an integer number of year even with holidays/leap year return Math.round((endDate.toEpochDay() - startDate.toEpochDay()) / 365.25 * 12) / 12; } //------------------------- AUTOGENERATED START ------------------------- ///CLOVER:OFF /** * The meta-bean for {@code NormalSwaptionExpiryStrikeVolatilities}. * @return the meta-bean, not null */ public static NormalSwaptionExpiryStrikeVolatilities.Meta meta() { return NormalSwaptionExpiryStrikeVolatilities.Meta.INSTANCE; } static { JodaBeanUtils.registerMetaBean(NormalSwaptionExpiryStrikeVolatilities.Meta.INSTANCE); } /** * The serialization version id. */ private static final long serialVersionUID = 1L; @Override public NormalSwaptionExpiryStrikeVolatilities.Meta metaBean() { return NormalSwaptionExpiryStrikeVolatilities.Meta.INSTANCE; } @Override public <R> Property<R> property(String propertyName) { return metaBean().<R>metaProperty(propertyName).createProperty(this); } @Override public Set<String> propertyNames() { return metaBean().metaPropertyMap().keySet(); } //----------------------------------------------------------------------- /** * Gets the swap convention that the volatilities are to be used for. * @return the value of the property, not null */ @Override public FixedIborSwapConvention getConvention() { return convention; } //----------------------------------------------------------------------- /** * Gets the valuation date-time. * <p> * The volatilities are calibrated for this date-time. * @return the value of the property, not null */ @Override public ZonedDateTime getValuationDateTime() { return valuationDateTime; } //----------------------------------------------------------------------- /** * Gets the normal volatility surface. * <p> * The x-value of the surface is the expiry, as a year fraction. * The y-value of the surface is the strike, as a rate. * @return the value of the property, not null */ public Surface getSurface() { return surface; } //----------------------------------------------------------------------- @Override public boolean equals(Object obj) { if (obj == this) { return true; } if (obj != null && obj.getClass() == this.getClass()) { NormalSwaptionExpiryStrikeVolatilities other = (NormalSwaptionExpiryStrikeVolatilities) obj; return JodaBeanUtils.equal(convention, other.convention) && JodaBeanUtils.equal(valuationDateTime, other.valuationDateTime) && JodaBeanUtils.equal(surface, other.surface); } return false; } @Override public int hashCode() { int hash = getClass().hashCode(); hash = hash * 31 + JodaBeanUtils.hashCode(convention); hash = hash * 31 + JodaBeanUtils.hashCode(valuationDateTime); hash = hash * 31 + JodaBeanUtils.hashCode(surface); return hash; } @Override public String toString() { StringBuilder buf = new StringBuilder(128); buf.append("NormalSwaptionExpiryStrikeVolatilities{"); buf.append("convention").append('=').append(convention).append(',').append(' '); buf.append("valuationDateTime").append('=').append(valuationDateTime).append(',').append(' '); buf.append("surface").append('=').append(JodaBeanUtils.toString(surface)); buf.append('}'); return buf.toString(); } //----------------------------------------------------------------------- /** * The meta-bean for {@code NormalSwaptionExpiryStrikeVolatilities}. */ public static final class Meta extends DirectMetaBean { /** * The singleton instance of the meta-bean. */ static final Meta INSTANCE = new Meta(); /** * The meta-property for the {@code convention} property. */ private final MetaProperty<FixedIborSwapConvention> convention = DirectMetaProperty.ofImmutable( this, "convention", NormalSwaptionExpiryStrikeVolatilities.class, FixedIborSwapConvention.class); /** * The meta-property for the {@code valuationDateTime} property. */ private final MetaProperty<ZonedDateTime> valuationDateTime = DirectMetaProperty.ofImmutable( this, "valuationDateTime", NormalSwaptionExpiryStrikeVolatilities.class, ZonedDateTime.class); /** * The meta-property for the {@code surface} property. */ private final MetaProperty<Surface> surface = DirectMetaProperty.ofImmutable( this, "surface", NormalSwaptionExpiryStrikeVolatilities.class, Surface.class); /** * The meta-properties. */ private final Map<String, MetaProperty<?>> metaPropertyMap$ = new DirectMetaPropertyMap( this, null, "convention", "valuationDateTime", "surface"); /** * Restricted constructor. */ private Meta() { } @Override protected MetaProperty<?> metaPropertyGet(String propertyName) { switch (propertyName.hashCode()) { case 2039569265: // convention return convention; case -949589828: // valuationDateTime return valuationDateTime; case -1853231955: // surface return surface; } return super.metaPropertyGet(propertyName); } @Override public BeanBuilder<? extends NormalSwaptionExpiryStrikeVolatilities> builder() { return new NormalSwaptionExpiryStrikeVolatilities.Builder(); } @Override public Class<? extends NormalSwaptionExpiryStrikeVolatilities> beanType() { return NormalSwaptionExpiryStrikeVolatilities.class; } @Override public Map<String, MetaProperty<?>> metaPropertyMap() { return metaPropertyMap$; } //----------------------------------------------------------------------- /** * The meta-property for the {@code convention} property. * @return the meta-property, not null */ public MetaProperty<FixedIborSwapConvention> convention() { return convention; } /** * The meta-property for the {@code valuationDateTime} property. * @return the meta-property, not null */ public MetaProperty<ZonedDateTime> valuationDateTime() { return valuationDateTime; } /** * The meta-property for the {@code surface} property. * @return the meta-property, not null */ public MetaProperty<Surface> surface() { return surface; } //----------------------------------------------------------------------- @Override protected Object propertyGet(Bean bean, String propertyName, boolean quiet) { switch (propertyName.hashCode()) { case 2039569265: // convention return ((NormalSwaptionExpiryStrikeVolatilities) bean).getConvention(); case -949589828: // valuationDateTime return ((NormalSwaptionExpiryStrikeVolatilities) bean).getValuationDateTime(); case -1853231955: // surface return ((NormalSwaptionExpiryStrikeVolatilities) bean).getSurface(); } return super.propertyGet(bean, propertyName, quiet); } @Override protected void propertySet(Bean bean, String propertyName, Object newValue, boolean quiet) { metaProperty(propertyName); if (quiet) { return; } throw new UnsupportedOperationException("Property cannot be written: " + propertyName); } } //----------------------------------------------------------------------- /** * The bean-builder for {@code NormalSwaptionExpiryStrikeVolatilities}. */ private static final class Builder extends DirectFieldsBeanBuilder<NormalSwaptionExpiryStrikeVolatilities> { private FixedIborSwapConvention convention; private ZonedDateTime valuationDateTime; private Surface surface; /** * Restricted constructor. */ private Builder() { } //----------------------------------------------------------------------- @Override public Object get(String propertyName) { switch (propertyName.hashCode()) { case 2039569265: // convention return convention; case -949589828: // valuationDateTime return valuationDateTime; case -1853231955: // surface return surface; default: throw new NoSuchElementException("Unknown property: " + propertyName); } } @Override public Builder set(String propertyName, Object newValue) { switch (propertyName.hashCode()) { case 2039569265: // convention this.convention = (FixedIborSwapConvention) newValue; break; case -949589828: // valuationDateTime this.valuationDateTime = (ZonedDateTime) newValue; break; case -1853231955: // surface this.surface = (Surface) newValue; break; default: throw new NoSuchElementException("Unknown property: " + propertyName); } return this; } @Override public Builder set(MetaProperty<?> property, Object value) { super.set(property, value); return this; } @Override public Builder setString(String propertyName, String value) { setString(meta().metaProperty(propertyName), value); return this; } @Override public Builder setString(MetaProperty<?> property, String value) { super.setString(property, value); return this; } @Override public Builder setAll(Map<String, ? extends Object> propertyValueMap) { super.setAll(propertyValueMap); return this; } @Override public NormalSwaptionExpiryStrikeVolatilities build() { return new NormalSwaptionExpiryStrikeVolatilities( convention, valuationDateTime, surface); } //----------------------------------------------------------------------- @Override public String toString() { StringBuilder buf = new StringBuilder(128); buf.append("NormalSwaptionExpiryStrikeVolatilities.Builder{"); buf.append("convention").append('=').append(JodaBeanUtils.toString(convention)).append(',').append(' '); buf.append("valuationDateTime").append('=').append(JodaBeanUtils.toString(valuationDateTime)).append(',').append(' '); buf.append("surface").append('=').append(JodaBeanUtils.toString(surface)); buf.append('}'); return buf.toString(); } } ///CLOVER:ON //-------------------------- AUTOGENERATED END -------------------------- }