Examples of rpv01()


Examples of com.opengamma.analytics.financial.credit.creditdefaultswap.pricing.vanilla.isdanew.FastCreditCurveBuilder.Pricer.rpv01()

    final double proLeg1 = testedPricer.protectionLeg(CDS, YIELD_CURVE, CREDIT_CURVE);
    final double proLeg2 = pricer.protectionLeg(CREDIT_CURVE);

    final double premLeg1 = testedPricer.pvPremiumLegPerUnitSpread(CDS, YIELD_CURVE, CREDIT_CURVE, PriceType.CLEAN);
    final double premLeg2 = pricer.rpv01(CREDIT_CURVE, PriceType.CLEAN);

    assertEquals("pro-leg", proLeg1, proLeg2, 1e-13);
    assertEquals("prem-leg", premLeg1, premLeg2, 1e-13);
  }
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.