/** * Copyright (C) 2011 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.financial.analytics.model.forex.option.black; import java.util.Collections; import java.util.Set; import com.opengamma.OpenGammaRuntimeException; import com.opengamma.analytics.financial.forex.calculator.DeltaValueBlackForexCalculator; import com.opengamma.analytics.financial.interestrate.InstrumentDerivative; import com.opengamma.analytics.financial.model.option.definition.ForexOptionDataBundle; import com.opengamma.analytics.financial.model.option.definition.SmileDeltaTermStructureDataBundle; import com.opengamma.engine.ComputationTarget; import com.opengamma.engine.function.FunctionExecutionContext; import com.opengamma.engine.function.FunctionInputs; import com.opengamma.engine.value.ComputedValue; import com.opengamma.engine.value.ValuePropertyNames; import com.opengamma.engine.value.ValueRequirement; import com.opengamma.engine.value.ValueRequirementNames; import com.opengamma.engine.value.ValueSpecification; import com.opengamma.financial.analytics.model.black.BlackDiscountingValueDeltaFXOptionFunction; import com.opengamma.util.money.CurrencyAmount; /** * The function to compute the value delta of Forex options in the Black model. * @deprecated Use {@link BlackDiscountingValueDeltaFXOptionFunction} */ @Deprecated public class FXOptionBlackValueDeltaFunction extends FXOptionBlackSingleValuedFunction { /** * The calculator to compute the delta value. */ private static final DeltaValueBlackForexCalculator CALCULATOR = DeltaValueBlackForexCalculator.getInstance(); /** * Sets the value requirement name to {@link ValueRequirementNames#VALUE_DELTA} */ public FXOptionBlackValueDeltaFunction() { super(ValueRequirementNames.VALUE_DELTA); } @Override protected Set<ComputedValue> getResult(final InstrumentDerivative forex, final ForexOptionDataBundle<?> data, final ComputationTarget target, final Set<ValueRequirement> desiredValues, final FunctionInputs inputs, final ValueSpecification spec, final FunctionExecutionContext executionContext) { if (data instanceof SmileDeltaTermStructureDataBundle) { final CurrencyAmount result = forex.accept(CALCULATOR, data); final String resultCurrency = result.getCurrency().getCode(); final String expectedCurrency = spec.getProperty(ValuePropertyNames.CURRENCY); if (!expectedCurrency.equals(resultCurrency)) { throw new OpenGammaRuntimeException("Expected currency " + expectedCurrency + " does not equal result currency " + resultCurrency); } final double deltaValue = result.getAmount(); return Collections.singleton(new ComputedValue(spec, deltaValue)); } throw new OpenGammaRuntimeException("Can only calculate delta for surfaces with smiles"); } }