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,直连正常
165 lines
3.8 KiB
Python
165 lines
3.8 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 (
|
|
FR,
|
|
DateOffset,
|
|
Easter,
|
|
EasterMonday,
|
|
GoodFriday,
|
|
Holiday,
|
|
)
|
|
from pandas.tseries.offsets import Day
|
|
|
|
from .common_holidays import (
|
|
ascension_day,
|
|
boxing_day,
|
|
christmas,
|
|
christmas_eve,
|
|
epiphany,
|
|
european_labour_day,
|
|
maundy_thursday,
|
|
midsummer_eve,
|
|
new_years_day,
|
|
new_years_eve,
|
|
whit_monday,
|
|
)
|
|
from .exchange_calendar import WEEKDAYS, HolidayCalendar, ExchangeCalendar
|
|
|
|
NewYearsDay = new_years_day()
|
|
|
|
DayBeforeEpiphany = Holiday(
|
|
"Day Before Epiphany",
|
|
month=1,
|
|
day=5,
|
|
days_of_week=WEEKDAYS,
|
|
)
|
|
Epiphany = epiphany()
|
|
|
|
DayBeforeLabourDay = Holiday(
|
|
"Day Before Labour Day",
|
|
month=4,
|
|
day=30,
|
|
days_of_week=WEEKDAYS,
|
|
)
|
|
LabourDay = european_labour_day()
|
|
|
|
MaundyThursday = maundy_thursday(days_of_week=WEEKDAYS)
|
|
DayBeforeAscensionDay = Holiday(
|
|
"Day Before Ascension Day",
|
|
month=1,
|
|
day=1,
|
|
offset=[Easter(), Day(38)],
|
|
)
|
|
AscensionDay = ascension_day()
|
|
WhitMonday = whit_monday(end_date="2005")
|
|
|
|
NationalDay = Holiday("Sweden National Day", month=6, day=6, start_date="2004")
|
|
|
|
MidsummerEve = midsummer_eve()
|
|
|
|
# This falls on the Friday between October 30th and November 5th.
|
|
AllSaintsEve = Holiday(
|
|
"All Saints' Eve",
|
|
month=10,
|
|
day=30,
|
|
offset=DateOffset(weekday=FR(1)),
|
|
)
|
|
|
|
ChristmasEve = christmas_eve()
|
|
Christmas = christmas()
|
|
BoxingDay = boxing_day()
|
|
|
|
NewYearsEve = new_years_eve()
|
|
|
|
|
|
class XSTOExchangeCalendar(ExchangeCalendar):
|
|
"""
|
|
Calendar for the Stockholm Stock Exchange in Sweden.
|
|
|
|
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
|
|
- Labour Day
|
|
- Ascension Day
|
|
- National Day
|
|
- Midsummer Eve
|
|
- Christmas Eve
|
|
- Christmas Day
|
|
- Boxing Day
|
|
- New Year's Eve
|
|
|
|
Holidays No Longer Observed:
|
|
- Whit Monday
|
|
|
|
Early Closes:
|
|
- Day before Epiphany
|
|
- Maundy Thursday
|
|
- Day before Labour Day
|
|
- Day before Ascension Day
|
|
- All Saints' Eve
|
|
"""
|
|
|
|
name = "XSTO"
|
|
tz = ZoneInfo("Europe/Stockholm")
|
|
open_times = ((None, time(9, 0)),)
|
|
close_times = ((None, time(17, 30)),)
|
|
regular_early_close = time(13)
|
|
|
|
@property
|
|
def regular_holidays(self):
|
|
return HolidayCalendar(
|
|
[
|
|
NewYearsDay,
|
|
Epiphany,
|
|
GoodFriday,
|
|
EasterMonday,
|
|
LabourDay,
|
|
AscensionDay,
|
|
WhitMonday,
|
|
NationalDay,
|
|
MidsummerEve,
|
|
ChristmasEve,
|
|
Christmas,
|
|
BoxingDay,
|
|
NewYearsEve,
|
|
]
|
|
)
|
|
|
|
@property
|
|
def special_closes(self):
|
|
return [
|
|
(
|
|
self.regular_early_close,
|
|
HolidayCalendar(
|
|
[
|
|
DayBeforeEpiphany,
|
|
MaundyThursday,
|
|
DayBeforeLabourDay,
|
|
DayBeforeAscensionDay,
|
|
AllSaintsEve,
|
|
]
|
|
),
|
|
),
|
|
]
|