Package org.jquantlib.time.calendars

Examples of org.jquantlib.time.calendars.Switzerland


  public Zibor(final Period tenor,
      final Handle<YieldTermStructure> h) {
    super("Zibor", tenor, 2,
        new CHFCurrency(),
        new Switzerland(),
        BusinessDayConvention.ModifiedFollowing,
        false,
        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 CHFLibor(final Period tenor,
      final Handle<YieldTermStructure> h) {
    super("CHFLibor", tenor, 2,
        new CHFCurrency(),
        new Switzerland(),
        new Actual360(), h);
  }
View Full Code Here

  @Test
  public void testSwitzerlandSWXCalendar() {

    QL.info("\n\n=== Switzerland SWX Calendar ===");

    final Calendar c = new Switzerland();

    testSwitzerlandCalendar(c);
  }
View Full Code Here

TOP

Related Classes of org.jquantlib.time.calendars.Switzerland

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.