Package org.jquantlib.daycounters

Examples of org.jquantlib.daycounters.Actual360


  public DKKLibor(final Period tenor,
      final Handle<YieldTermStructure> h) {
    super("DKKLibor", tenor, 2,
        new DKKCurrency(),
        new Denmark(),
        new Actual360(), h);
  }
View Full Code Here


    super("Zibor", tenor, 2,
        new CHFCurrency(),
        new Switzerland(),
        BusinessDayConvention.ModifiedFollowing,
        false,
        new Actual360(),
        h);
  }
View Full Code Here

  public USDLibor(final Period tenor,
      final Handle<YieldTermStructure> h) {
    super("USDLibor", tenor, 2,
        new USDCurrency(),
        new UnitedStates(UnitedStates.Market.SETTLEMENT),
        new Actual360(), h);
  }
View Full Code Here

  public DailyTenorUSDLibor(final int settlementDays,
      final Handle<YieldTermStructure> h) {
    super("USDLibor", settlementDays,
        new USDCurrency(),
        new UnitedStates(UnitedStates.Market.SETTLEMENT),
        new Actual360(), h);
  }
View Full Code Here

  public DailyTenorJPYLibor(final int settlementDays,
      final Handle<YieldTermStructure> h) {
    super("JPYLibor", settlementDays,
        new JPYCurrency(),
        new Japan(),
        new Actual360(), h);
  }
View Full Code Here

    super("CDOR", tenor, 2,
        new CADCurrency(),
        new Canada(),
        BusinessDayConvention.ModifiedFollowing,
        false,
        new Actual360(),
        h);
  }
View Full Code Here

                2, // settlement days
                new EURCurrency(),
                new Target(),
                euriborConvention(tenor),
                euriborEOM(tenor),
                new Actual360(),
                h);
        QL.require(tenor().units() != TimeUnit.Days , "for daily tenors dedicated DailyTenor constructor must be used");
    }
View Full Code Here

  public NZDLibor(final Period tenor,
      final Handle<YieldTermStructure> h) {
    super("NZDLibor", tenor, 2,
        new NZDCurrency(),
        new NewZealand(),
        new Actual360(), h);
  }
View Full Code Here

  public DailyTenorCHFLibor(final int settlementDays,
      final Handle<YieldTermStructure> h) {
    super("CHFLibor", settlementDays,
        new CHFCurrency(),
        new Switzerland(),
        new Actual360(), h);
  }
View Full Code Here

  public CADLibor(final Period tenor,
      final Handle<YieldTermStructure> h) {
    super("CADLibor", tenor, 2,
        new CADCurrency(),
        new Canada(),
        new Actual360(), h);
  }
View Full Code Here

TOP

Related Classes of org.jquantlib.daycounters.Actual360

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.