-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from pmorissette/master
Merge from upstream
- Loading branch information
Showing
9 changed files
with
265 additions
and
273 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
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,13 +1,8 @@ | ||
from . import core | ||
from . import algos | ||
from . import backtest | ||
import ffn | ||
from ffn import data, get, merge, utils | ||
|
||
from . import algos, backtest, core | ||
from .backtest import Backtest, run | ||
from .core import Strategy, Algo, AlgoStack, FixedIncomeStrategy | ||
from .core import Security, FixedIncomeSecurity, CouponPayingSecurity | ||
from .core import HedgeSecurity, CouponPayingHedgeSecurity | ||
|
||
import ffn | ||
from ffn import utils, data, get, merge | ||
from .core import Algo, AlgoStack, CouponPayingHedgeSecurity, CouponPayingSecurity, FixedIncomeSecurity, FixedIncomeStrategy, HedgeSecurity, Security, Strategy | ||
|
||
__version__ = "1.0.1" | ||
__version__ = "1.1.0" |
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
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 |
---|---|---|
|
@@ -25,25 +25,25 @@ def local_file(filename): | |
|
||
setup( | ||
name="bt", | ||
version="1.0.1", | ||
version="1.1.0", | ||
author="Philippe Morissette", | ||
author_email="[email protected]", | ||
description="A flexible backtesting framework for Python", | ||
keywords="python finance quant backtesting strategies algotrading algorithmic trading", | ||
url="https://github.com/pmorissette/bt", | ||
license="MIT", | ||
install_requires=["ffn>=1.0.0", "pyprind>=2.11", "tqdm>=4"], | ||
install_requires=["ffn>=1.1.0", "pyprind>=2.11", "tqdm>=4"], | ||
extras_require={ | ||
"dev": [ | ||
"cython>=0.29.25", | ||
"ffn>=1.0.0", | ||
"ffn>=1.1.0", | ||
"matplotlib>=2", | ||
"numpy>=1", | ||
"pandas>=0.19", | ||
"pyprind>=2.11", | ||
"pytest", | ||
"pytest-cov", | ||
"ruff>=0.3,<0.5", | ||
"ruff>=0.5.0,<0.6", | ||
"setuptools", | ||
"twine", | ||
"wheel", | ||
|
Oops, something went wrong.