PyAlgoEngine 0.3.12.post4__tar.gz → 0.3.13__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/AlgoEngine/Engine/AlgoEngine.py +0 -0
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/AlgoEngine/Engine/EventEngine.py +0 -0
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/AlgoEngine/Engine/MarketEngine.py +1 -1
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/AlgoEngine/Engine/TradeEngine.py +0 -0
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/AlgoEngine/Engine/__init__.py +0 -0
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/AlgoEngine/Strategies/BackTest.py +0 -0
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/AlgoEngine/Strategies/_StrategyEngine.py +0 -0
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/AlgoEngine/Strategies/__init__.py +0 -0
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/AlgoEngine/__init__.py +1 -1
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/LICENSE +0 -0
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/PKG-INFO +6 -1
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/PyAlgoEngine.egg-info/PKG-INFO +6 -1
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/PyAlgoEngine.egg-info/SOURCES.txt +0 -0
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/PyAlgoEngine.egg-info/dependency_links.txt +0 -0
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/PyAlgoEngine.egg-info/requires.txt +0 -0
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/PyAlgoEngine.egg-info/top_level.txt +0 -0
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/README.md +0 -0
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/setup.cfg +0 -0
- {PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/setup.py +0 -0
|
File without changes
|
|
File without changes
|
|
@@ -1022,7 +1022,7 @@ class ProgressiveReplay(Replay):
|
|
|
1022
1022
|
data = self.replay_task[self.task_progress]
|
|
1023
1023
|
self.task_progress += 1
|
|
1024
1024
|
else:
|
|
1025
|
-
if self.eod is not None and self.date_progress and self.replay_calendar[self.date_progress] > self.start_date:
|
|
1025
|
+
if self.eod is not None and self.date_progress and (self.date_progress >= len(self.replay_calendar) or self.replay_calendar[self.date_progress] > self.start_date):
|
|
1026
1026
|
self.eod(market_date=self.replay_calendar[self.date_progress - 1], replay=self)
|
|
1027
1027
|
|
|
1028
1028
|
self.replay_task.clear()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PyAlgoEngine
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.13
|
|
4
4
|
Summary: Basic algo engine
|
|
5
5
|
Home-page: https://github.com/BolunHan/PyAlgoEngine
|
|
6
6
|
Author: Bolun.Han
|
|
@@ -12,6 +12,11 @@ Classifier: Operating System :: OS Independent
|
|
|
12
12
|
Requires-Python: >=3.8
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
+
Requires-Dist: numpy
|
|
16
|
+
Requires-Dist: pandas
|
|
17
|
+
Requires-Dist: exchange_calendars
|
|
18
|
+
Requires-Dist: PyQuantKit
|
|
19
|
+
Requires-Dist: PyEventEngine
|
|
15
20
|
|
|
16
21
|
# PyAlgoEngine
|
|
17
22
|
python algo trading engine
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PyAlgoEngine
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.13
|
|
4
4
|
Summary: Basic algo engine
|
|
5
5
|
Home-page: https://github.com/BolunHan/PyAlgoEngine
|
|
6
6
|
Author: Bolun.Han
|
|
@@ -12,6 +12,11 @@ Classifier: Operating System :: OS Independent
|
|
|
12
12
|
Requires-Python: >=3.8
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
+
Requires-Dist: numpy
|
|
16
|
+
Requires-Dist: pandas
|
|
17
|
+
Requires-Dist: exchange_calendars
|
|
18
|
+
Requires-Dist: PyQuantKit
|
|
19
|
+
Requires-Dist: PyEventEngine
|
|
15
20
|
|
|
16
21
|
# PyAlgoEngine
|
|
17
22
|
python algo trading engine
|
|
File without changes
|
{PyAlgoEngine-0.3.12.post4 → pyalgoengine-0.3.13}/PyAlgoEngine.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|