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
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2000, 2001, 2002, 2003 RiskMap srl
Copyright (C) 2003, 2004, 2005, 2006, 2007 StatPro Italia srl
Copyright (C) 2004, 2005, 2006 Ferdinando Ametrano
Copyright (C) 2006 Katiuscia Manzoni
Copyright (C) 2015 Maddalena Zanzi
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
<https://www.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/asx.hpp>
#include <ql/settings.hpp>
#include <ql/utilities/dataparsers.hpp>
#include <boost/algorithm/string/case_conv.hpp>
#include <boost/utility/string_view.hpp>
#include <string>
#include <cctype>
namespace QuantLib {
namespace {
const boost::string_view All_MONTH_CODES = "FGHJKMNQUVXZ";
}
bool ASX::isASXdate(const Date& date, bool mainCycle) {
if (date.weekday()!=Friday)
return false;
Day d = date.dayOfMonth();
if (d<8 || d>14)
return false;
if (!mainCycle) return true;
switch (date.month()) {
case March:
case June:
case September:
case December:
return true;
default:
return false;
}
}
bool ASX::isASXcode(const std::string& in, bool mainCycle) {
if (in.length() != 2)
return false;
// 2nd character of code needs to be digit
if (std::isdigit(static_cast<unsigned char>(in[1])) == 0)
return false;
// 1st character needs to represent the correct month
const boost::string_view validMonthCodes = mainCycle ? "HMUZ" : All_MONTH_CODES;
return validMonthCodes.find(std::toupper(in[0])) != boost::string_view::npos;
}
std::string ASX::code(const Date& date) {
QL_REQUIRE(isASXdate(date, false),
date << " is not an ASX date");
// month() is 1-based!
const char monthCode = All_MONTH_CODES[date.month()-1];
const char yearDigit = static_cast<char>(static_cast<int>('0') + (date.year() % 10));
std::string code{monthCode, yearDigit};
#ifdef QL_EXTRA_SAFETY_CHECKS
QL_ENSURE(isASXcode(code, false),
"the result " << code <<
" is an invalid ASX code");
#endif
return code;
}
Date ASX::date(const std::string& asxCode,
const Date& refDate) {
QL_REQUIRE(isASXcode(asxCode, false),
asxCode << " is not a valid ASX code");
const Date referenceDate = (refDate != Date() ?
refDate :
Date(Settings::instance().evaluationDate()));
const char ms = std::toupper(asxCode.front());
const std::size_t idxZeroBased = All_MONTH_CODES.find(ms);
QL_ASSERT(idxZeroBased != All_MONTH_CODES.npos, "invalid ASX month letter. code: " + asxCode);
// QuantLib::Month is 1-based!
const auto m = static_cast<QuantLib::Month>(idxZeroBased + 1);
// convert 2nd char to year digit
Year y = static_cast<int>(asxCode[1]) - static_cast<int>('0');
QL_ASSERT((y>=0) && (y <= 9), "invalid ASX year digit. code: " + asxCode);
/* year<1900 are not valid QuantLib years: to avoid a run-time
exception few lines below we need to add 10 years right away */
if (y==0 && referenceDate.year()<=1909) y+=10;
const Year referenceYear = (referenceDate.year() % 10);
y += referenceDate.year() - referenceYear;
Date result = ASX::nextDate(Date(1, m, y), false);
return (result >= referenceDate) ? result : ASX::nextDate(Date(1, m, y+10), false);
}
Date ASX::nextDate(const Date& date, bool mainCycle) {
Date refDate = (date == Date() ?
Date(Settings::instance().evaluationDate()) :
date);
Year y = refDate.year();
QuantLib::Month m = refDate.month();
Size offset = mainCycle ? 3 : 1;
Size skipMonths = offset-(m%offset);
if (skipMonths != offset || refDate.dayOfMonth() > 14) {
skipMonths += Size(m);
if (skipMonths<=12) {
m = QuantLib::Month(skipMonths);
} else {
m = QuantLib::Month(skipMonths-12);
y += 1;
}
}
Date result = Date::nthWeekday(2, Friday, m, y);
if (result<=refDate)
result = nextDate(Date(15, m, y), mainCycle);
return result;
}
Date ASX::nextDate(const std::string& ASXcode,
bool mainCycle,
const Date& referenceDate) {
Date asxDate = date(ASXcode, referenceDate);
return nextDate(asxDate+1, mainCycle);
}
std::string ASX::nextCode(const Date& d,
bool mainCycle) {
Date date = nextDate(d, mainCycle);
return code(date);
}
std::string ASX::nextCode(const std::string& asxCode,
bool mainCycle,
const Date& referenceDate) {
Date date = nextDate(asxCode, mainCycle, referenceDate);
return code(date);
}
}
|