QuantLib
: a free/open-source library for quantitative finance
fully annotated source code - version 1.34
Loading...
Searching...
No Matches
ql
time
calendars
sweden.cpp
Go to the documentation of this file.
1
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
3
/*
4
Copyright (C) 2000, 2001, 2002, 2003 RiskMap srl
5
6
This file is part of QuantLib, a free-software/open-source library
7
for financial quantitative analysts and developers - http://quantlib.org/
8
9
QuantLib is free software: you can redistribute it and/or modify it
10
under the terms of the QuantLib license. You should have received a
11
copy of the license along with this program; if not, please email
12
<quantlib-dev@lists.sf.net>. The license is also available online at
13
<http://quantlib.org/license.shtml>.
14
15
This program is distributed in the hope that it will be useful, but WITHOUT
16
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17
FOR A PARTICULAR PURPOSE. See the license for more details.
18
*/
19
20
#include <
ql/time/calendars/sweden.hpp
>
21
22
namespace
QuantLib
{
23
24
Sweden::Sweden
() {
25
// all calendar instances share the same implementation instance
26
static
ext::shared_ptr<Calendar::Impl> impl(
new
Sweden::Impl
);
27
impl_
= impl;
28
}
29
30
bool
Sweden::Impl::isBusinessDay
(
const
Date
& date)
const
{
31
Weekday
w = date.
weekday
();
32
Day
d
= date.
dayOfMonth
(), dd = date.
dayOfYear
();
33
Month
m = date.
month
();
34
Year
y
= date.
year
();
35
Day
em =
easterMonday
(
y
);
36
if
(
isWeekend
(w)
37
// Good Friday
38
|| (dd == em-3)
39
// Easter Monday
40
|| (dd == em)
41
// Ascension Thursday
42
|| (dd == em+38)
43
// Whit Monday (till 2004)
44
|| (dd == em+49 &&
y
< 2005)
45
// New Year's Day
46
|| (
d
== 1 && m ==
January
)
47
// Epiphany
48
|| (
d
== 6 && m ==
January
)
49
// May Day
50
|| (
d
== 1 && m ==
May
)
51
// National Day
52
// Only a holiday since 2005
53
|| (
d
== 6 && m ==
June
&&
y
>= 2005)
54
// Midsummer Eve (Friday between June 19-25)
55
|| (w ==
Friday
&& (
d
>= 19 &&
d
<= 25) && m ==
June
)
56
// Christmas Eve
57
|| (
d
== 24 && m ==
December
)
58
// Christmas Day
59
|| (
d
== 25 && m ==
December
)
60
// Boxing Day
61
|| (
d
== 26 && m ==
December
)
62
// New Year's Eve
63
|| (
d
== 31 && m ==
December
))
64
return
false
;
// NOLINT(readability-simplify-boolean-expr)
65
return
true
;
66
}
67
68
}
69
y
Real y
Definition:
andreasenhugevolatilityinterpl.cpp:46
QuantLib::Calendar::WesternImpl::easterMonday
static Day easterMonday(Year)
expressed relative to first day of year
Definition:
calendar.cpp:199
QuantLib::Calendar::WesternImpl::isWeekend
bool isWeekend(Weekday) const override
Definition:
calendar.cpp:195
QuantLib::Calendar::impl_
ext::shared_ptr< Impl > impl_
Definition:
calendar.hpp:72
QuantLib::Date
Concrete date class.
Definition:
date.hpp:125
QuantLib::Date::month
Month month() const
Definition:
date.cpp:82
QuantLib::Date::year
Year year() const
Definition:
date.cpp:93
QuantLib::Date::dayOfMonth
Day dayOfMonth() const
Definition:
date.hpp:400
QuantLib::Date::weekday
Weekday weekday() const
Definition:
date.hpp:395
QuantLib::Date::dayOfYear
Day dayOfYear() const
One-based (Jan 1st = 1)
Definition:
date.hpp:404
QuantLib::Sweden::Impl
Definition:
sweden.hpp:55
QuantLib::Sweden::Impl::isBusinessDay
bool isBusinessDay(const Date &) const override
Definition:
sweden.cpp:30
QuantLib::Sweden::Sweden
Sweden()
Definition:
sweden.cpp:24
d
Date d
Definition:
exchangeratemanager.cpp:32
QuantLib::Year
Integer Year
Year number.
Definition:
date.hpp:87
QuantLib::Day
Integer Day
Day number.
Definition:
date.hpp:53
QuantLib::Month
Month
Month names.
Definition:
date.hpp:57
QuantLib::Weekday
Weekday
Definition:
weekday.hpp:41
QuantLib::December
@ December
Definition:
date.hpp:68
QuantLib::January
@ January
Definition:
date.hpp:57
QuantLib::May
@ May
Definition:
date.hpp:61
QuantLib::June
@ June
Definition:
date.hpp:62
QuantLib::Friday
@ Friday
Definition:
weekday.hpp:46
QuantLib
Definition:
any.hpp:35
sweden.hpp
Swedish calendar.
Generated by
Doxygen
1.9.5