1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2004 Ferdinando Ametrano
This file is part of QuantLib, a free-software/open-source library
for financial quantitative analysts and developers - http://quantlib.org/
QuantLib is free software: you can redistribute it and/or modify it
under the terms of the QuantLib license. You should have received a
copy of the license along with this program; if not, please email
<quantlib-dev@lists.sf.net>. The license is also available online at
<http://quantlib.org/license.shtml>.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the license for more details.
*/
#include <ql/time/calendars/germany.hpp>
#include <ql/errors.hpp>
namespace QuantLib {
Germany::Germany(Germany::Market market) {
// all calendar instances on the same market share the same
// implementation instance
static boost::shared_ptr<Calendar::Impl> settlementImpl(
new Germany::SettlementImpl);
static boost::shared_ptr<Calendar::Impl> frankfurtStockExchangeImpl(
new Germany::FrankfurtStockExchangeImpl);
static boost::shared_ptr<Calendar::Impl> xetraImpl(
new Germany::XetraImpl);
static boost::shared_ptr<Calendar::Impl> eurexImpl(
new Germany::EurexImpl);
static boost::shared_ptr<Calendar::Impl> euwaxImpl(
new Germany::EuwaxImpl);
switch (market) {
case Settlement:
impl_ = settlementImpl;
break;
case FrankfurtStockExchange:
impl_ = frankfurtStockExchangeImpl;
break;
case Xetra:
impl_ = xetraImpl;
break;
case Eurex:
impl_ = eurexImpl;
break;
case Euwax:
impl_ = euwaxImpl;
break;
default:
QL_FAIL("unknown market");
}
}
bool Germany::SettlementImpl::isBusinessDay(const Date& date) const {
Weekday w = date.weekday();
Day d = date.dayOfMonth(), dd = date.dayOfYear();
Month m = date.month();
Year y = date.year();
Day em = easterMonday(y);
if (isWeekend(w)
// New Year's Day
|| (d == 1 && m == January)
// Good Friday
|| (dd == em-3)
// Easter Monday
|| (dd == em)
// Ascension Thursday
|| (dd == em+38)
// Whit Monday
|| (dd == em+49)
// Corpus Christi
|| (dd == em+59)
// Labour Day
|| (d == 1 && m == May)
// National Day
|| (d == 3 && m == October)
// Christmas Eve
|| (d == 24 && m == December)
// Christmas
|| (d == 25 && m == December)
// Boxing Day
|| (d == 26 && m == December)
// New Year's Eve
|| (d == 31 && m == December))
return false;
return true;
}
bool Germany::FrankfurtStockExchangeImpl::isBusinessDay(
const Date& date) const {
Weekday w = date.weekday();
Day d = date.dayOfMonth(), dd = date.dayOfYear();
Month m = date.month();
Year y = date.year();
Day em = easterMonday(y);
if (isWeekend(w)
// New Year's Day
|| (d == 1 && m == January)
// Good Friday
|| (dd == em-3)
// Easter Monday
|| (dd == em)
// Labour Day
|| (d == 1 && m == May)
// Christmas' Eve
|| (d == 24 && m == December)
// Christmas
|| (d == 25 && m == December)
// Christmas Day
|| (d == 26 && m == December)
// New Year's Eve
|| (d == 31 && m == December))
return false;
return true;
}
bool Germany::XetraImpl::isBusinessDay(const Date& date) const {
Weekday w = date.weekday();
Day d = date.dayOfMonth(), dd = date.dayOfYear();
Month m = date.month();
Year y = date.year();
Day em = easterMonday(y);
if (isWeekend(w)
// New Year's Day
|| (d == 1 && m == January)
// Good Friday
|| (dd == em-3)
// Easter Monday
|| (dd == em)
// Labour Day
|| (d == 1 && m == May)
// Christmas' Eve
|| (d == 24 && m == December)
// Christmas
|| (d == 25 && m == December)
// Christmas Day
|| (d == 26 && m == December)
// New Year's Eve
|| (d == 31 && m == December))
return false;
return true;
}
bool Germany::EurexImpl::isBusinessDay(const Date& date) const {
Weekday w = date.weekday();
Day d = date.dayOfMonth(), dd = date.dayOfYear();
Month m = date.month();
Year y = date.year();
Day em = easterMonday(y);
if (isWeekend(w)
// New Year's Day
|| (d == 1 && m == January)
// Good Friday
|| (dd == em-3)
// Easter Monday
|| (dd == em)
// Labour Day
|| (d == 1 && m == May)
// Christmas' Eve
|| (d == 24 && m == December)
// Christmas
|| (d == 25 && m == December)
// Christmas Day
|| (d == 26 && m == December)
// New Year's Eve
|| (d == 31 && m == December))
return false;
return true;
}
bool Germany::EuwaxImpl::isBusinessDay(const Date& date) const {
Weekday w = date.weekday();
Day d = date.dayOfMonth(), dd = date.dayOfYear();
Month m = date.month();
Year y = date.year();
Day em = easterMonday(y);
if ((w == Saturday || w == Sunday)
// New Year's Day
|| (d == 1 && m == January)
// Good Friday
|| (dd == em-3)
// Easter Monday
|| (dd == em)
// Labour Day
|| (d == 1 && m == May)
// Whit Monday
|| (dd == em+49)
// Christmas' Eve
|| (d == 24 && m == December)
// Christmas
|| (d == 25 && m == December)
// Christmas Day
|| (d == 26 && m == December)
// New Year's Eve
|| (d == 31 && m == December))
return false;
return true;
}
}
|