fa45d8aa5f
- health_checklist.json: 192.168.1.122→node122
- ocr_client.py: docstring IP→node122
- docs/market-data-requirements.md: IP→node122
- 所有API调用通过ProxyHandler({})绕过系统代理
Privoxy对node122:18003返回500,直连正常
167 lines
4.2 KiB
Python
167 lines
4.2 KiB
Python
#
|
|
# Copyright 2018 Quantopian, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from datetime import time
|
|
from zoneinfo import ZoneInfo
|
|
|
|
from pandas.tseries.holiday import (
|
|
EasterMonday,
|
|
GoodFriday,
|
|
Holiday,
|
|
previous_friday,
|
|
previous_workday,
|
|
)
|
|
|
|
from .common_holidays import (
|
|
all_saints_day,
|
|
ascension_day,
|
|
assumption_day,
|
|
christmas,
|
|
christmas_eve,
|
|
corpus_christi,
|
|
epiphany,
|
|
european_labour_day,
|
|
immaculate_conception,
|
|
new_years_day,
|
|
new_years_eve,
|
|
whit_monday,
|
|
)
|
|
from .exchange_calendar import HolidayCalendar, ExchangeCalendar
|
|
|
|
NewYearsDay = new_years_day()
|
|
|
|
Epiphany = epiphany(end_date="2019")
|
|
|
|
AscensionDay = ascension_day(end_date="2019")
|
|
WhitMonday = whit_monday(end_date="2023")
|
|
CorpusChristi = corpus_christi(end_date="2019")
|
|
|
|
LabourDay = european_labour_day()
|
|
|
|
AssumptionDay = assumption_day(end_date="2019")
|
|
|
|
NationalHoliday = Holiday("National Holiday", month=10, day=26)
|
|
|
|
AllSaintsDay = all_saints_day(end_date="2019")
|
|
|
|
ImmaculateConception = immaculate_conception(end_date="2019")
|
|
|
|
ChristmasEve = christmas_eve()
|
|
Christmas = christmas()
|
|
|
|
SaintStephensDay = Holiday("Saint Stephen's Day", month=12, day=26)
|
|
|
|
# Prior to 2016, when New Year's Eve fell on the weekend, it was observed
|
|
# on the preceding Friday. In 2016 and after, it is not made up.
|
|
NewYearsEveThrough2015 = new_years_eve(
|
|
observance=previous_friday,
|
|
end_date="2016",
|
|
)
|
|
NewYearsEve2016Onwards = new_years_eve(start_date="2016")
|
|
|
|
# Early Closes
|
|
# ------------
|
|
# The last weekday before Dec 31 is an early close starting in 2017. Note: this
|
|
# is decided upon separately each year somewhen in November/December.
|
|
# Official announcements can be found at
|
|
#
|
|
# https://www.wienerborse.at/en/news/vienna-stock-exchange-news-list/
|
|
#
|
|
# when searching for "Last trading day".
|
|
LastWorkingDay = Holiday(
|
|
"Last Working Day of Year Early Close",
|
|
month=12,
|
|
day=31,
|
|
start_date="2017-01-01",
|
|
observance=previous_workday,
|
|
)
|
|
|
|
|
|
class XWBOExchangeCalendar(ExchangeCalendar):
|
|
"""
|
|
Calendar for the Wiener Borse AG exchange in Vienna, Austria.
|
|
|
|
Open Time: 9:00 AM, CET (Central European Time)
|
|
Close Time: 5:30 PM, CET (Central European Time)
|
|
|
|
Regularly-Observed Holidays:
|
|
- New Year's Day
|
|
- Epiphany
|
|
- Good Friday
|
|
- Easter Monday
|
|
- Ascension Day
|
|
- Whit Monday
|
|
- Corpus Christi
|
|
- Labour Day
|
|
- Assumption Day
|
|
- National Holiday
|
|
- All Saints Day
|
|
- Immaculate Conception
|
|
- Christmas Eve
|
|
- Christmas Day
|
|
- St. Stephen's Day
|
|
- New Year's Eve
|
|
|
|
Early Closes:
|
|
- Last working day before Dec. 31
|
|
"""
|
|
|
|
regular_early_close = time(14, 15)
|
|
|
|
name = "XWBO"
|
|
|
|
tz = ZoneInfo("Europe/Vienna")
|
|
|
|
open_times = ((None, time(9)),)
|
|
|
|
close_times = ((None, time(17, 30)),)
|
|
|
|
@property
|
|
def regular_holidays(self):
|
|
return HolidayCalendar(
|
|
[
|
|
NewYearsDay,
|
|
Epiphany,
|
|
GoodFriday,
|
|
EasterMonday,
|
|
AscensionDay,
|
|
WhitMonday,
|
|
CorpusChristi,
|
|
LabourDay,
|
|
AssumptionDay,
|
|
NationalHoliday,
|
|
AllSaintsDay,
|
|
ImmaculateConception,
|
|
ChristmasEve,
|
|
Christmas,
|
|
SaintStephensDay,
|
|
NewYearsEveThrough2015,
|
|
NewYearsEve2016Onwards,
|
|
]
|
|
)
|
|
|
|
@property
|
|
def special_closes(self):
|
|
return [
|
|
(
|
|
self.regular_early_close,
|
|
HolidayCalendar(
|
|
[
|
|
LastWorkingDay,
|
|
]
|
|
),
|
|
)
|
|
]
|