Skip to content

Commit 475bb54

Browse files
authoredJan 2, 2022··
Merge pull request #290 from alpacahq/fix-usage-of-exchange-calendars
Fix usage of exchange calendars
2 parents 1b537ac + 8fdb0b0 commit 475bb54

File tree

5 files changed

+23
-12
lines changed

5 files changed

+23
-12
lines changed
 

‎.circleci/config.yml

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
version: 2
22
jobs:
3-
build-python36:
3+
build-python38:
44
docker:
5-
- image: python:3.6.7
5+
- image: python:3.8.11
66
working_directory: ~/repo
77
steps:
8-
- run: echo "hello python 3.6.7"
8+
- run: echo "hello python 3.8.11"
99
- checkout
1010

1111
# Download and cache dependencies
@@ -23,7 +23,6 @@ jobs:
2323
- run:
2424
name: run tests
2525
command: |
26-
pip install pandas==1.1.5 numpy==1.19.4 scipy==1.5.4
2726
pip install flake8 && flake8
2827
python setup.py develop
2928
python setup.py test
@@ -34,11 +33,11 @@ jobs:
3433
key: v1-dependencies-{{ checksum "setup.py" }}
3534

3635
- store_artifacts:
37-
path: test-reports3.6.7
38-
destination: test-reports3.6.7
36+
path: test-reports3.8.11
37+
destination: test-reports3.8.11
3938

4039
workflows:
4140
version: 2
4241
build:
4342
jobs:
44-
- build-python36
43+
- build-python38

‎alpaca_backtrader_api/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
__all__ = [
66
'AlpacaStore', 'AlpacaBroker', 'AlpacaData',
77
]
8-
__version__ = '0.14.1'
8+
__version__ = '0.15.0'

‎alpaca_backtrader_api/alpacastore.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ def _make_sure_dates_are_initialized_properly(self, dtbegin, dtend,
445445
not dtend.tzname() else dtend
446446
if granularity == Granularity.Minute:
447447
calendar = exchange_calendars.get_calendar(name='NYSE')
448-
while not calendar.is_open_on_minute(dtend):
448+
while not calendar.is_open_on_minute(dtend.ceil(freq='T')):
449449
dtend = dtend.replace(hour=15,
450450
minute=59,
451451
second=0,

‎requirements/requirements.txt

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
backtrader==1.9.76.123
2-
alpaca-trade-api==1.2.3
3-
exchange_calendars==3.2
2+
alpaca-trade-api==1.4.3
3+
exchange-calendars==3.4
4+
matplotlib==2.2.5
5+
msgpack==1.0.2
6+
numpy==1.21.2
7+
pandas==1.3.2

‎setup.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
with open(os.path.join("requirements", "requirements_test.txt")) as reqs:
2121
REQUIREMENTS_TEST = reqs.readlines()
2222

23-
2423
setup(
2524
name='alpaca-backtrader-api',
2625
version=version,
@@ -30,6 +29,15 @@
3029
author='Alpaca',
3130
author_email='oss@alpaca.markets',
3231
url='https://github.com/alpacahq/alpaca-backtrader-api',
32+
classifiers=[
33+
'Programming Language :: Python :: 3',
34+
'Programming Language :: Python :: 3.7',
35+
'Programming Language :: Python :: 3.8',
36+
'Programming Language :: Python :: 3.9',
37+
38+
# Operating Systems on which it runs
39+
'Operating System :: OS Independent',
40+
],
3341
keywords='financial,timeseries,api,trade,backtrader',
3442
packages=['alpaca_backtrader_api'],
3543
install_requires=REQUIREMENTS,

0 commit comments

Comments
 (0)
Please sign in to comment.