Package org.jquantlib.cashflow

Examples of org.jquantlib.cashflow.IborCouponPricer


                         BusinessDayConvention.ModifiedFollowing,
                         volatility,
                         new Actual365Fixed()));
       
         // Coupon pricers
         final IborCouponPricer pricer = new BlackIborCouponPricer(vol);
         PricerSetter.setCouponPricer(floatingRateBond.cashflows(),pricer);
       
         // Yield curve bootstrapping
         forecastingTermStructure.linkTo(depoSwapTermStructure);
         discountingTermStructure.linkTo(bondDiscountingTermStructur);
View Full Code Here


    final IborIndex index = new USDLibor(new Period(6,TimeUnit.Months), riskFreeRate);
      final int fixingDays = 1;

      final double tolerance = 1.0e-6;

      final IborCouponPricer pricer = new BlackIborCouponPricer(new Handle<OptionletVolatilityStructure>());

      // plain

      final Schedule sch = new Schedule(new Date(30,Month.November,2004),
                    new Date(30,Month.November,2008),
View Full Code Here

        vars.no_callability, vars.creditSpread, vars.issueDate,
        vars.settlementDays, index, fixingDays, spreads,
        vars.dayCounter, schedule, vars.redemption);
    amFloating.setPricingEngine(engine);

    final IborCouponPricer pricer = new BlackIborCouponPricer(
        new Handle<OptionletVolatilityStructure>());

    final Schedule floatSchedule = new Schedule(vars.issueDate,
        vars.maturityDate, new Period(vars.frequency), vars.calendar,
        BusinessDayConvention.Following,
View Full Code Here

TOP

Related Classes of org.jquantlib.cashflow.IborCouponPricer

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.