All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.opengamma.strata.pricer.capfloor.IborCapletFloorletVolatilities Maven / Gradle / Ivy

There is a newer version: 2.12.46
Show newest version
/*
 * Copyright (C) 2016 - present by OpenGamma Inc. and the OpenGamma group of companies
 *
 * Please see distribution for license.
 */
package com.opengamma.strata.pricer.capfloor;

import java.time.LocalDate;
import java.time.ZonedDateTime;

import com.opengamma.strata.basics.index.IborIndex;
import com.opengamma.strata.market.MarketDataView;
import com.opengamma.strata.market.ValueType;
import com.opengamma.strata.market.param.CurrencyParameterSensitivities;
import com.opengamma.strata.market.param.ParameterPerturbation;
import com.opengamma.strata.market.param.ParameterizedData;
import com.opengamma.strata.market.sensitivity.PointSensitivities;
import com.opengamma.strata.market.sensitivity.PointSensitivity;
import com.opengamma.strata.product.common.PutCall;

/**
 * Volatilities for pricing Ibor caplet/floorlet.
 * 

* This provides access to the volatilities for various pricing models, such as normal and Black. */ public interface IborCapletFloorletVolatilities extends MarketDataView, ParameterizedData { /** * Gets the name of these volatilities. * * @return the name */ public abstract IborCapletFloorletVolatilitiesName getName(); /** * Gets the Ibor index for which the data is valid. * * @return the Ibor index */ public abstract IborIndex getIndex(); /** * Gets the type of volatility returned by the {@link IborCapletFloorletVolatilities#volatility} method. * * @return the type */ public abstract ValueType getVolatilityType(); /** * Gets the valuation date. *

* The volatilities are calibrated for this date. * * @return the valuation date */ @Override public default LocalDate getValuationDate() { return getValuationDateTime().toLocalDate(); } /** * Gets the valuation date-time. *

* The volatilities are calibrated for this date-time. * * @return the valuation date-time */ public abstract ZonedDateTime getValuationDateTime(); @Override public abstract IborCapletFloorletVolatilities withParameter(int parameterIndex, double newValue); @Override public abstract IborCapletFloorletVolatilities withPerturbation(ParameterPerturbation perturbation); //------------------------------------------------------------------------- /** * Calculates the volatility at the specified expiry. * * @param expiryDateTime the option expiry * @param strike the option strike rate * @param forward the forward rate * @return the volatility * @throws RuntimeException if the value cannot be obtained */ public default double volatility(ZonedDateTime expiryDateTime, double strike, double forward) { return volatility(relativeTime(expiryDateTime), strike, forward); } /** * Calculates the volatility at the specified expiry. *

* This relies on expiry supplied by {@link #relativeTime(ZonedDateTime)}. * * @param expiry the time to expiry as a year fraction * @param strike the option strike rate * @param forward the forward rate * @return the volatility * @throws RuntimeException if the value cannot be obtained */ public abstract double volatility(double expiry, double strike, double forward); //------------------------------------------------------------------------- /** * Calculates the parameter sensitivity. *

* This computes the {@link CurrencyParameterSensitivities} associated with the {@link PointSensitivities}. * This corresponds to the projection of the point sensitivity to the internal parameters representation. * * @param pointSensitivities the point sensitivities * @return the sensitivity to the underlying parameters */ public default CurrencyParameterSensitivities parameterSensitivity(PointSensitivity... pointSensitivities) { return parameterSensitivity(PointSensitivities.of(pointSensitivities)); } /** * Calculates the parameter sensitivity. *

* This computes the {@link CurrencyParameterSensitivities} associated with the {@link PointSensitivities}. * This corresponds to the projection of the point sensitivity to the internal parameters representation. * * @param pointSensitivities the point sensitivities * @return the sensitivity to the underlying parameters */ public abstract CurrencyParameterSensitivities parameterSensitivity(PointSensitivities pointSensitivities); //------------------------------------------------------------------------- /** * Calculates the price. *

* This relies on expiry supplied by {@link #relativeTime(ZonedDateTime)}. * This relies on volatility supplied by {@link #volatility(double, double, double)}. * * @param expiry the time to expiry as a year fraction * @param putCall whether the option is put or call * @param strike the option strike rate * @param forward the forward rate * @param volatility the volatility * @return the price * @throws RuntimeException if the value cannot be obtained */ public abstract double price( double expiry, PutCall putCall, double strike, double forward, double volatility); /** * Calculates the price delta. *

* This is the first order sensitivity of the option price to the forward. *

* This relies on expiry supplied by {@link #relativeTime(ZonedDateTime)}. * This relies on volatility supplied by {@link #volatility(double, double, double)}. * * @param expiry the time to expiry as a year fraction * @param putCall whether the option is put or call * @param strike the option strike rate * @param forward the forward rate * @param volatility the volatility * @return the delta * @throws RuntimeException if the value cannot be obtained */ public abstract double priceDelta( double expiry, PutCall putCall, double strike, double forward, double volatility); /** * Calculates the price gamma. *

* This is the second order sensitivity of the option price to the forward. *

* This relies on expiry supplied by {@link #relativeTime(ZonedDateTime)}. * This relies on volatility supplied by {@link #volatility(double, double, double)}. * * @param expiry the time to expiry as a year fraction * @param putCall whether the option is put or call * @param strike the option strike rate * @param forward the forward rate * @param volatility the volatility * @return the gamma * @throws RuntimeException if the value cannot be obtained */ public abstract double priceGamma( double expiry, PutCall putCall, double strike, double forward, double volatility); /** * Calculates the price theta. *

* This is the driftless sensitivity of the option price to a change in time to maturity. *

* This relies on expiry supplied by {@link #relativeTime(ZonedDateTime)}. * This relies on volatility supplied by {@link #volatility(double, double, double)}. * * @param expiry the time to expiry as a year fraction * @param putCall whether the option is put or call * @param strike the option strike rate * @param forward the forward rate * @param volatility the volatility * @return the theta * @throws RuntimeException if the value cannot be obtained */ public abstract double priceTheta( double expiry, PutCall putCall, double strike, double forward, double volatility); /** * Calculates the price vega. *

* This is the sensitivity of the option price to the implied volatility. *

* This relies on expiry supplied by {@link #relativeTime(ZonedDateTime)}. * This relies on volatility supplied by {@link #volatility(double, double, double)}. * * @param expiry the time to expiry as a year fraction * @param putCall whether the option is put or call * @param strike the option strike rate * @param forward the forward rate * @param volatility the volatility * @return the vega * @throws RuntimeException if the value cannot be obtained */ public abstract double priceVega( double expiry, PutCall putCall, double strike, double forward, double volatility); //------------------------------------------------------------------------- /** * Converts a time and date to a relative year fraction. *

* When the date is after the valuation date (and potentially time), the returned number is negative. * * @param dateTime the date-time to find the relative year fraction of * @return the relative year fraction */ public abstract double relativeTime(ZonedDateTime dateTime); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy