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,直连正常
164 lines
4.2 KiB
Python
164 lines
4.2 KiB
Python
#
|
|
# Copyright 2019 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 itertools import chain
|
|
from zoneinfo import ZoneInfo
|
|
|
|
import pandas as pd
|
|
from pandas.tseries.holiday import EasterMonday, GoodFriday, Holiday
|
|
|
|
from .common_holidays import (
|
|
assumption_day,
|
|
christmas,
|
|
christmas_eve,
|
|
epiphany,
|
|
european_labour_day,
|
|
new_years_day,
|
|
orthodox_ash_monday,
|
|
orthodox_good_friday,
|
|
orthodox_easter_monday,
|
|
orthodox_whit_monday,
|
|
)
|
|
from .exchange_calendar import HolidayCalendar, ExchangeCalendar
|
|
|
|
|
|
NewYearsDay = new_years_day()
|
|
|
|
Epiphany = epiphany()
|
|
|
|
OrthodoxAshMonday = orthodox_ash_monday()
|
|
|
|
NationalHoliday1 = Holiday(
|
|
"Independence Day",
|
|
month=3,
|
|
day=25,
|
|
)
|
|
|
|
OrthodoxGoodFriday = orthodox_good_friday()
|
|
|
|
OrthodoxEasterMonday = orthodox_easter_monday()
|
|
|
|
LabourDay = european_labour_day()
|
|
|
|
OrthodoxWhitMonday = orthodox_whit_monday()
|
|
|
|
AssumptionDay = assumption_day()
|
|
|
|
NationalHoliday2 = Holiday(
|
|
"Ochi Day",
|
|
month=10,
|
|
day=28,
|
|
)
|
|
|
|
ChristmasEve = christmas_eve(start_date="2009")
|
|
|
|
ChristmasDay = christmas()
|
|
|
|
SecondDayOfChristmas = Holiday(
|
|
"Second Day of Christmas",
|
|
month=12,
|
|
day=26,
|
|
)
|
|
|
|
|
|
class ASEXExchangeCalendar(ExchangeCalendar):
|
|
"""
|
|
Exchange calendar for the Athens Stock Exchange (ASEX).
|
|
|
|
Open Time: 10:00 AM, EEST
|
|
Close Time: 5:00 PM, EEST (until 2008-09-29)
|
|
5:20 PM, EEST (starting 2008-09-29)
|
|
|
|
Regularly-Observed Holidays:
|
|
- New Year's Day
|
|
- Epiphany (Jan 6)
|
|
- Orthodox Ash Monday (48 days before Orthodox Easter Sunday)
|
|
- National Holiday (Mar 25)
|
|
- Good Friday
|
|
- Easter Monday
|
|
- Orthodox Good Friday
|
|
- Orthodox Easter Monday
|
|
- Labour Day (May 1)
|
|
- Orthodox Whit Monday (50 days after Orthodox Easter Sunday)
|
|
- Assumption Day (Aug 15)
|
|
- National Holiday (Oct 28)
|
|
- Christmas Eve
|
|
- Christmas Day
|
|
- Second Day of Christmas (Dec 26)
|
|
|
|
Early Closes:
|
|
- None
|
|
"""
|
|
|
|
name = "ASEX"
|
|
|
|
tz = ZoneInfo("Europe/Athens")
|
|
|
|
open_times = ((None, time(10)),)
|
|
|
|
close_times = ((None, time(17, 00)), (pd.Timestamp("2008-09-29"), time(17, 20)))
|
|
|
|
@property
|
|
def regular_holidays(self):
|
|
return HolidayCalendar(
|
|
[
|
|
NewYearsDay,
|
|
Epiphany,
|
|
OrthodoxEasterMonday,
|
|
NationalHoliday1,
|
|
GoodFriday,
|
|
EasterMonday,
|
|
OrthodoxGoodFriday,
|
|
OrthodoxAshMonday,
|
|
LabourDay,
|
|
OrthodoxWhitMonday,
|
|
AssumptionDay,
|
|
NationalHoliday2,
|
|
ChristmasEve,
|
|
ChristmasDay,
|
|
SecondDayOfChristmas,
|
|
]
|
|
)
|
|
|
|
@property
|
|
def adhoc_holidays(self):
|
|
debt_crisis = pd.date_range("2015-06-29", "2015-07-31", freq="B")
|
|
|
|
debt_crisis_holidays = [pd.Timestamp(str(date)) for date in debt_crisis]
|
|
|
|
misc_adhoc_holidays = [
|
|
# In 2002, market closed for unknown reason
|
|
pd.Timestamp("2002-05-07"),
|
|
# In 2004, Assumption Day fell on a sunday, observed on a Friday
|
|
pd.Timestamp("2004-08-13"),
|
|
# In 2008, worker strikes closed the market for 2 days in March
|
|
pd.Timestamp("2008-03-04"),
|
|
pd.Timestamp("2008-03-05"),
|
|
# In 2013, May Day strikes closed the market
|
|
pd.Timestamp("2013-05-07"),
|
|
# In 2014, New Year's Eve was observed as a holiday
|
|
pd.Timestamp("2014-12-31"),
|
|
# In 2016, Labour Day fell on a Sunday, observed on Tuesday
|
|
pd.Timestamp("2016-05-03"),
|
|
]
|
|
|
|
return list(
|
|
chain(
|
|
debt_crisis_holidays,
|
|
misc_adhoc_holidays,
|
|
)
|
|
)
|