Package com.opengamma.analytics.financial.interestrate.payments.provider

Examples of com.opengamma.analytics.financial.interestrate.payments.provider.CapFloorIborSABRCapExtrapolationRightMethod


   * @param mu The tail thickness parameter.
   */
  public PresentValueSABRCapRightExtrapolationCalculator(final double cutOffStrike, final double mu) {
    _mu = mu;
    _cutOffStrike = cutOffStrike;
    _methodExtraCap = new CapFloorIborSABRCapExtrapolationRightMethod(_cutOffStrike, _mu);
  }
View Full Code Here


   * @param mu The tail thickness parameter.
   */
  public PresentValueSABRSensitivitySABRCapRightExtrapolationCalculator(final double cutOffStrike, final double mu) {
    _mu = mu;
    _cutOffStrike = cutOffStrike;
    _methodExtraCap = new CapFloorIborSABRCapExtrapolationRightMethod(_cutOffStrike, _mu);
  }
View Full Code Here

   * @param mu The tail thickness parameter.
   */
  public PresentValueCurveSensitivitySABRCapRightExtrapolationCalculator(final double cutOffStrike, final double mu) {
    _mu = mu;
    _cutOffStrike = cutOffStrike;
    _methodExtraCap = new CapFloorIborSABRCapExtrapolationRightMethod(_cutOffStrike, _mu);
  }
View Full Code Here

TOP

Related Classes of com.opengamma.analytics.financial.interestrate.payments.provider.CapFloorIborSABRCapExtrapolationRightMethod

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.