Examples of UnitedKingdom


Examples of org.jquantlib.time.calendars.UnitedKingdom

    // http://www.bba.org.uk/bba/jsp/polopoly.jsp?d=225&a=1412 :
    // UnitedKingdom::Exchange is the fixing calendar for
    // a) all currencies but EUR
    // b) all indexes but o/n and s/n
    super(familyName, tenor, settlementDays,
        currency, new UnitedKingdom(UnitedKingdom.Market.Exchange),
        liborConvention(tenor), liborEOM(tenor), dayCounter, h);
    financialCenterCalendar_ = financialCenterCalendar;
    jointCalendar_ = new JointCalendar(new UnitedKingdom(UnitedKingdom.Market.Exchange),
        financialCenterCalendar_,
        JointCalendarRule.JoinHolidays);
    QL.require(this.tenor().units()!= TimeUnit.Days,
        "for daily tenors (" + this.tenor() +
            ") dedicated DailyTenor constructor must be used");
View Full Code Here

Examples of org.jquantlib.time.calendars.UnitedKingdom

  public GBPLibor(final Period tenor,
      final Handle<YieldTermStructure> h) {
    super("GBPLibor", tenor, 0,
        new GBPCurrency(),
        new UnitedKingdom(UnitedKingdom.Market.Exchange),
        new Actual365Fixed(), h);
  }
View Full Code Here

Examples of org.jquantlib.time.calendars.UnitedKingdom

  public DailyTenorGBPLibor(final int settlementDays,
      final Handle<YieldTermStructure> h) {
    super("GBPLibor", settlementDays,
        new GBPCurrency(),
        new UnitedKingdom(UnitedKingdom.Market.Exchange),
        new Actual365Fixed(), h);
  }
View Full Code Here

Examples of org.jquantlib.time.calendars.UnitedKingdom

      final Handle<YieldTermStructure> h) {
      super(familyName,
          new Period(1,TimeUnit.Days),
          settlementDays,
          currency,
              new JointCalendar(new UnitedKingdom(Market.Exchange),
              new Target(),
              JointCalendarRule.JoinBusinessDays),
          liborConvention(new Period(1,TimeUnit.Days)),
          liborEOM(new Period(1,TimeUnit.Days)),
          dayCounter,
View Full Code Here

Examples of org.jquantlib.time.calendars.UnitedKingdom

    // b) all indexes but o/n and s/n
    super(familyName,
        tenor,
        settlementDays,
        currency,
        new UnitedKingdom(UnitedKingdom.Market.Exchange),
        liborConvention(tenor),
        liborEOM(tenor),
        dayCounter,
        h);
    this.financialCenterCalendar = financialCenterCalendar;
    this.jointCalendar = new JointCalendar(new UnitedKingdom(UnitedKingdom.Market.Exchange),
        financialCenterCalendar,
        JointCalendarRule.JoinHolidays);
    QL.require(this.tenor().units()!= TimeUnit.Days,
        "for daily tenors (" + this.tenor() + ") dedicated DailyTenor constructor must be used");
View Full Code Here

Examples of org.jquantlib.time.calendars.UnitedKingdom

    public EURLibor(final Period tenor, final Handle<YieldTermStructure> h) {
        super("EURLibor",
                tenor,
                2, // settlement days
                new EURCurrency(),
                new JointCalendar(new UnitedKingdom(Market.Exchange),
                          new Target(),
                          JointCalendarRule.JoinBusinessDays),
                eurliborConvention(tenor),
                eurliborEOM(tenor),
                new Actual360(),
View Full Code Here

Examples of org.jquantlib.time.calendars.UnitedKingdom

    public void testJointCalendars() {

      System.out.println("Testing joint calendars...");

        Calendar c1 = new Target(),
                 c2 = new UnitedKingdom(),
                 c3 = new UnitedStates(UnitedStates.Market.NYSE),
                 c4 = new Japan();

        Calendar c12h = new JointCalendar(c1,c2,JointCalendarRule.JoinHolidays),
                 c12b = new JointCalendar(c1,c2,JointCalendarRule.JoinBusinessDays),
                 c123h = new JointCalendar(c1,c2,c3,JointCalendarRule.JoinHolidays),
                 c123b = new JointCalendar(c1,c2,c3,JointCalendarRule.JoinBusinessDays),
                 c1234h = new JointCalendar(c1,c2,c3,c4,JointCalendarRule.JoinHolidays),
                 c1234b = new JointCalendar(c1,c2,c3,c4,JointCalendarRule.JoinBusinessDays);

        // test one year, starting today
        Date firstDate = Date.todaysDate(),
             endDate = firstDate.add(new Period(1, TimeUnit.Years));

        for (Date d = firstDate; d.lt(endDate); d.inc()) {

            boolean b1 = c1.isBusinessDay(d),
                 b2 = c2.isBusinessDay(d),
                 b3 = c3.isBusinessDay(d),
                 b4 = c4.isBusinessDay(d);

            if ((b1 && b2) != c12h.isBusinessDay(d))
              Assert.fail("At date " + d + ":\n"
View Full Code Here

Examples of org.jquantlib.time.calendars.UnitedKingdom

    private final Calendar exchange;

   
    public UnitedKingdomCalendarTest() {
        System.out.println("::::: " + this.getClass().getSimpleName() + " :::::");
        this.metals = new UnitedKingdom(UnitedKingdom.Market.Metals);
        this.settlement = new UnitedKingdom(UnitedKingdom.Market.Settlement);
        this.exchange = new UnitedKingdom(UnitedKingdom.Market.Exchange);
    }
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.