Package com.opengamma.financial.analytics.volatility.cube

Examples of com.opengamma.financial.analytics.volatility.cube.VolatilityCubeConfigPopulator


    }
    if (isEquityOptionSurface()) {
      new EquityOptionSurfaceConfigPopulator(cm);
    }
    if (isVolatilityCube()) {
      new VolatilityCubeConfigPopulator(cm);
    }
    if (isFxForwardCurve()) {
      new FXForwardCurveConfigPopulator(cm);
    }
    if (isCurveCalculationConfiguration()) {
View Full Code Here


    fxForward.put(UnorderedCurrencyPair.of(Currency.USD, Currency.JPY), new Triple<>("DEFAULT", "JPY", "JPY"));
    new YieldCurveConfigPopulator(configMaster, false);
    FXOptionVolatilitySurfaceConfigPopulator.populateVolatilitySurfaceConfigMaster(configMaster, fxSurfaces);
    SwaptionVolatilitySurfaceConfigPopulator.populateVolatilitySurfaceConfigMaster(configMaster, swaptionSurfaces);
    FXForwardCurveConfigPopulator.populateFXForwardCurveConfigMaster(configMaster, fxForward);
    new VolatilityCubeConfigPopulator(configMaster);
    new ExampleFXImpliedMultiCurveCalculationConfigPopulator(configMaster);
  }
View Full Code Here

    final ConfigMaster configMaster = getToolContext().getConfigMaster();
    new YieldCurveConfigPopulator(configMaster, true);
    ExampleFXOptionVolatilitySurfaceConfigPopulator.populateVolatilitySurfaceConfigMaster(configMaster, ExampleViewsPopulator.CURRENCY_PAIRS);
    ExampleATMSwaptionVolatilitySurfaceConfigPopulator.populateVolatilitySurfaceConfigMaster(configMaster, ExampleViewsPopulator.SWAPTION_SURFACES);
    ExampleFXForwardCurveConfigPopulator.populateCurveConfigMaster(configMaster, ExampleViewsPopulator.CURRENCY_PAIRS);
    new VolatilityCubeConfigPopulator(configMaster);
  }
View Full Code Here

TOP

Related Classes of com.opengamma.financial.analytics.volatility.cube.VolatilityCubeConfigPopulator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.