bbstrader 0.2.93__py3-none-any.whl → 0.2.94__py3-none-any.whl
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.
Potentially problematic release.
This version of bbstrader might be problematic. Click here for more details.
- bbstrader/__ini__.py +20 -20
- bbstrader/__main__.py +50 -50
- bbstrader/btengine/__init__.py +54 -54
- bbstrader/btengine/scripts.py +157 -157
- bbstrader/compat.py +19 -19
- bbstrader/config.py +137 -137
- bbstrader/core/data.py +22 -22
- bbstrader/core/utils.py +146 -146
- bbstrader/metatrader/__init__.py +6 -6
- bbstrader/metatrader/account.py +1516 -1516
- bbstrader/metatrader/copier.py +750 -745
- bbstrader/metatrader/rates.py +584 -584
- bbstrader/metatrader/risk.py +749 -748
- bbstrader/metatrader/scripts.py +81 -81
- bbstrader/metatrader/trade.py +1836 -1836
- bbstrader/metatrader/utils.py +645 -645
- bbstrader/models/__init__.py +10 -10
- bbstrader/models/factors.py +312 -312
- bbstrader/models/ml.py +1272 -1272
- bbstrader/models/optimization.py +182 -182
- bbstrader/models/portfolio.py +223 -223
- bbstrader/models/risk.py +398 -398
- bbstrader/trading/__init__.py +11 -11
- bbstrader/trading/execution.py +846 -846
- bbstrader/trading/script.py +155 -155
- bbstrader/trading/scripts.py +69 -69
- bbstrader/trading/strategies.py +860 -860
- bbstrader/tseries.py +1842 -1842
- {bbstrader-0.2.93.dist-info → bbstrader-0.2.94.dist-info}/LICENSE +21 -21
- {bbstrader-0.2.93.dist-info → bbstrader-0.2.94.dist-info}/METADATA +188 -187
- bbstrader-0.2.94.dist-info/RECORD +44 -0
- bbstrader-0.2.93.dist-info/RECORD +0 -44
- {bbstrader-0.2.93.dist-info → bbstrader-0.2.94.dist-info}/WHEEL +0 -0
- {bbstrader-0.2.93.dist-info → bbstrader-0.2.94.dist-info}/entry_points.txt +0 -0
- {bbstrader-0.2.93.dist-info → bbstrader-0.2.94.dist-info}/top_level.txt +0 -0
bbstrader/trading/__init__.py
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
"""
|
|
2
|
-
Trading strategies execution module
|
|
3
|
-
|
|
4
|
-
This module is responsible for executing trading strategies.
|
|
5
|
-
It provides a framework for executing trading strategies and managing the trading process.
|
|
6
|
-
The module is designed to be flexible and extensible, allowing users to define their own trading
|
|
7
|
-
strategies and customize the trading process.
|
|
8
|
-
|
|
9
|
-
"""
|
|
10
|
-
from bbstrader.trading.execution import * # noqa: F403
|
|
11
|
-
from bbstrader.trading.strategies import * # noqa: F403
|
|
1
|
+
"""
|
|
2
|
+
Trading strategies execution module
|
|
3
|
+
|
|
4
|
+
This module is responsible for executing trading strategies.
|
|
5
|
+
It provides a framework for executing trading strategies and managing the trading process.
|
|
6
|
+
The module is designed to be flexible and extensible, allowing users to define their own trading
|
|
7
|
+
strategies and customize the trading process.
|
|
8
|
+
|
|
9
|
+
"""
|
|
10
|
+
from bbstrader.trading.execution import * # noqa: F403
|
|
11
|
+
from bbstrader.trading.strategies import * # noqa: F403
|