-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update version in pyproject.toml * Add 1 day to data.days_to_target to account for the expiration day * Add 1 day to data._days_to_maturity to account for the expiration day * Update test_core.py * Update .gitignore * Update models.py * Update calendar_spread.ipynb, .gitignore, CHANGELOG.md, poetry.lock and pyproject.toml * Add 1 to `time_to_target` and `time_to_maturity` in `engine.py` * Update Jupyter notebooks, replacing the `StrategyEngine` class by the `run_strategy()` function * Update CHANGELOG.md * Black files in `tests` * Black `engine.py`, `models.py` and `support.py` * Update CHANGELOG.md * Change variable `project_target_ranges` in `models.py` and `engines.py` to `profit_target_ranges` * Black again `engine.py` * Update version in `__init__.py`
- Loading branch information
Showing
16 changed files
with
2,124 additions
and
315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
dist/ | ||
dist/ | ||
__pycache__ | ||
run_*.py | ||
.ipynb_checkpoints |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import typing | ||
|
||
|
||
VERSION = "1.2.0" | ||
VERSION = "1.2.1" | ||
|
||
|
||
if typing.TYPE_CHECKING: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.