bbstrader 0.3.0__py3-none-any.whl → 0.3.2__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/__init__.py +1 -1
- bbstrader/__main__.py +19 -13
- bbstrader/btengine/backtest.py +7 -8
- bbstrader/btengine/execution.py +2 -2
- bbstrader/btengine/strategy.py +68 -17
- bbstrader/config.py +2 -2
- bbstrader/core/data.py +92 -29
- bbstrader/metatrader/account.py +81 -16
- bbstrader/metatrader/copier.py +594 -195
- bbstrader/metatrader/risk.py +1 -0
- bbstrader/metatrader/scripts.py +53 -13
- bbstrader/metatrader/trade.py +79 -67
- bbstrader/metatrader/utils.py +3 -0
- bbstrader/models/__init__.py +0 -1
- bbstrader/models/ml.py +55 -26
- bbstrader/models/nlp.py +182 -74
- bbstrader/models/optimization.py +1 -1
- bbstrader/models/risk.py +16 -386
- bbstrader/trading/execution.py +70 -41
- bbstrader/trading/strategies.py +9 -592
- bbstrader/tseries.py +39 -709
- {bbstrader-0.3.0.dist-info → bbstrader-0.3.2.dist-info}/METADATA +36 -44
- bbstrader-0.3.2.dist-info/RECORD +47 -0
- bbstrader-0.3.0.dist-info/RECORD +0 -47
- {bbstrader-0.3.0.dist-info → bbstrader-0.3.2.dist-info}/WHEEL +0 -0
- {bbstrader-0.3.0.dist-info → bbstrader-0.3.2.dist-info}/entry_points.txt +0 -0
- {bbstrader-0.3.0.dist-info → bbstrader-0.3.2.dist-info}/licenses/LICENSE +0 -0
- {bbstrader-0.3.0.dist-info → bbstrader-0.3.2.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bbstrader
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Simplified Investment & Trading Toolkit
|
|
5
5
|
Home-page: https://github.com/bbalouki/bbstrader
|
|
6
6
|
Download-URL: https://pypi.org/project/bbstrader/
|
|
@@ -24,46 +24,41 @@ Classifier: Operating System :: MacOS
|
|
|
24
24
|
Classifier: License :: OSI Approved :: MIT License
|
|
25
25
|
Description-Content-Type: text/markdown
|
|
26
26
|
License-File: LICENSE
|
|
27
|
+
Requires-Dist: alphalens-reloaded>=0.4.5
|
|
28
|
+
Requires-Dist: beautifulsoup4>=4.13.1
|
|
29
|
+
Requires-Dist: colorama>=0.4.6
|
|
30
|
+
Requires-Dist: CurrencyConverter>=0.18.2
|
|
31
|
+
Requires-Dist: dash>=2.18.2
|
|
32
|
+
Requires-Dist: eodhd>=1.0.32
|
|
33
|
+
Requires-Dist: exchange-calendars>=4.9
|
|
34
|
+
Requires-Dist: filterpy>=1.4.5
|
|
35
|
+
Requires-Dist: financetoolkit>=1.9.9
|
|
36
|
+
Requires-Dist: ipython>=8.32.0
|
|
37
|
+
Requires-Dist: lightgbm>=4.5.0
|
|
38
|
+
Requires-Dist: nltk>=3.9.1
|
|
39
|
+
Requires-Dist: notify-py>=0.3.43
|
|
27
40
|
Requires-Dist: numpy<2.0.0,>=1.26.0
|
|
28
|
-
Requires-Dist:
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Requires-Dist:
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
Requires-Dist:
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
Requires-Dist:
|
|
37
|
-
Requires-Dist:
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
Requires-Dist:
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
Requires-Dist:
|
|
43
|
-
Requires-Dist:
|
|
44
|
-
Requires-Dist:
|
|
45
|
-
Requires-Dist:
|
|
46
|
-
Requires-Dist:
|
|
47
|
-
Requires-Dist:
|
|
48
|
-
Requires-Dist:
|
|
49
|
-
Requires-Dist: QuantStats
|
|
50
|
-
Requires-Dist: exchange-calendars
|
|
51
|
-
Requires-Dist: tqdm
|
|
52
|
-
Requires-Dist: notify-py
|
|
53
|
-
Requires-Dist: python-telegram-bot
|
|
54
|
-
Requires-Dist: eodhd
|
|
55
|
-
Requires-Dist: financetoolkit
|
|
56
|
-
Requires-Dist: PyYAML
|
|
57
|
-
Requires-Dist: tables
|
|
58
|
-
Requires-Dist: pyfiglet
|
|
59
|
-
Requires-Dist: colorama
|
|
60
|
-
Requires-Dist: praw
|
|
61
|
-
Requires-Dist: tweepy
|
|
62
|
-
Requires-Dist: beautifulsoup4
|
|
63
|
-
Requires-Dist: textblob
|
|
64
|
-
Requires-Dist: vaderSentiment
|
|
65
|
-
Requires-Dist: pytest
|
|
66
|
-
Requires-Dist: pytest-mock
|
|
41
|
+
Requires-Dist: pandas_ta>=0.3.14b0
|
|
42
|
+
Requires-Dist: praw>=7.8.1
|
|
43
|
+
Requires-Dist: pyfiglet>=1.0.2
|
|
44
|
+
Requires-Dist: pykalman>=0.10.1
|
|
45
|
+
Requires-Dist: pyportfolioopt>=1.5.6
|
|
46
|
+
Requires-Dist: python-dotenv>=1.0.1
|
|
47
|
+
Requires-Dist: python-telegram-bot>=21.10
|
|
48
|
+
Requires-Dist: PyYAML>=6.0.2
|
|
49
|
+
Requires-Dist: QuantStats>=0.0.64
|
|
50
|
+
Requires-Dist: scikit-learn>=1.6.1
|
|
51
|
+
Requires-Dist: seaborn>=0.13.2
|
|
52
|
+
Requires-Dist: spacy>=3.8.4
|
|
53
|
+
Requires-Dist: statsmodels>=0.14.4
|
|
54
|
+
Requires-Dist: sumy>=0.11.0
|
|
55
|
+
Requires-Dist: tables>=3.10.2
|
|
56
|
+
Requires-Dist: tabulate>=0.9.0
|
|
57
|
+
Requires-Dist: textblob>=0.19.0
|
|
58
|
+
Requires-Dist: tqdm>=4.67.1
|
|
59
|
+
Requires-Dist: tweepy>=4.15.0
|
|
60
|
+
Requires-Dist: vaderSentiment>=3.3.2
|
|
61
|
+
Requires-Dist: yfinance>=0.2.55
|
|
67
62
|
Provides-Extra: mt5
|
|
68
63
|
Requires-Dist: MetaTrader5; extra == "mt5"
|
|
69
64
|
Dynamic: author
|
|
@@ -172,10 +167,7 @@ To begin using `bbstrader`, please ensure your system meets the following prereq
|
|
|
172
167
|
* [Admirals Group AS](https://cabinet.a-partnership.com/visit/?bta=35537&brand=admiralmarkets) (for Stocks, ETFs, Indices, Commodities, Futures, Forex)
|
|
173
168
|
* [Just Global Markets Ltd.](https://one.justmarkets.link/a/tufvj0xugm/registration/trader) (for Stocks, Crypto, Indices, Commodities, Forex)
|
|
174
169
|
* [FTMO](https://trader.ftmo.com/?affiliates=JGmeuQqepAZLMcdOEQRp) (Proprietary Firm)
|
|
175
|
-
|
|
176
|
-
* Interactive Brokers Trader Workstation (TWS) or IB Gateway must be installed and running.
|
|
177
|
-
* An active account with Interactive Brokers.
|
|
178
|
-
* The Python client library for the IBKR API: `ibapi`.
|
|
170
|
+
|
|
179
171
|
|
|
180
172
|
### Installation
|
|
181
173
|
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
bbstrader/__init__.py,sha256=4KVGBEYU3ao9zPVM3rMWqNuvCleCeA6C2MVe_AFc4rw,581
|
|
2
|
+
bbstrader/__main__.py,sha256=pLg7yerYsz9kIQVu6EZXNxkFDS6OpY8BfwRAaj0niSw,2228
|
|
3
|
+
bbstrader/compat.py,sha256=djbHMvTvy0HYm1zyZ6Ttp_LMwP2PqTSVw1r7pqbz7So,487
|
|
4
|
+
bbstrader/config.py,sha256=riZxwb4hN0I-dSsWcjnROc5dWQpSJ9iKOMIp4PMGfko,3970
|
|
5
|
+
bbstrader/tseries.py,sha256=1gaS5lcn-7GqNasDNP_EficcLnshnb_pEz14eYT7Kzs,43868
|
|
6
|
+
bbstrader/btengine/__init__.py,sha256=y1btjaEfhWsH8vuE7mBRpP9Tu-Azt9REhuVYsPCAfBU,2955
|
|
7
|
+
bbstrader/btengine/backtest.py,sha256=o3eoCVzpjykDx-9VgkxK6DKZdGDAuLVeeWLCa2U_zeY,14652
|
|
8
|
+
bbstrader/btengine/data.py,sha256=Ko1QfW8Mo2w7Nufv-pERB9NC6v9E61YzbS9b1EK-osg,27055
|
|
9
|
+
bbstrader/btengine/event.py,sha256=Ydl1avAXp9WAWOBXDAckcb9g1UkcnCO0rRzcJZwIq20,8714
|
|
10
|
+
bbstrader/btengine/execution.py,sha256=4MytWjcKg8J_w14P43emHqsvKOElkQTfhVYNakU6euQ,11190
|
|
11
|
+
bbstrader/btengine/performance.py,sha256=1ecWrTzHBQbk4ORvbTEKxwCzlL1brcXOEUwgbnjAwx4,12470
|
|
12
|
+
bbstrader/btengine/portfolio.py,sha256=z98M65HQeCyma8gMZkAxspxBA9jtIhzxMyJUHPPj34c,16128
|
|
13
|
+
bbstrader/btengine/scripts.py,sha256=8o66dq4Ex4DsH4s8xvJqUOFjLzZJSnbBvvNBzohtzoE,4837
|
|
14
|
+
bbstrader/btengine/strategy.py,sha256=bH45muSk-lRaOKc8rPljJf3_XnVh3dSjihMwIJF9nYg,34319
|
|
15
|
+
bbstrader/core/__init__.py,sha256=GIFzFSStPfE0XM2j7mDeZZQeMTh_AwPsDOQXwMVJLgw,97
|
|
16
|
+
bbstrader/core/data.py,sha256=u8hhAF1Gf9fr_2Ci4mv7Smr1dt3E_KDAHXC3BFbis0Q,25055
|
|
17
|
+
bbstrader/core/scripts.py,sha256=orPtnQlNNNFV-yfqFGRAIGFtWgilykZ3xyTx6d4DLsk,3963
|
|
18
|
+
bbstrader/core/utils.py,sha256=WjuabzBjhY65ku2KL-f7CMalE2x-wrX-6mCA_qhhFPE,2728
|
|
19
|
+
bbstrader/ibkr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
+
bbstrader/ibkr/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
+
bbstrader/metatrader/__init__.py,sha256=A5Ye9tpc2sp9Xk5qjKw-EfYsoRcZtAt8nqvC3tCtZs8,333
|
|
22
|
+
bbstrader/metatrader/account.py,sha256=isEqyPBwSw9TJe5zIMuZqPWabDX2WAmKzrZ_zCdwEuY,59633
|
|
23
|
+
bbstrader/metatrader/analysis.py,sha256=pnZWdvEnf9wkPT0vhEIbZipnN5EUf6TaQftplYP9jRs,3564
|
|
24
|
+
bbstrader/metatrader/copier.py,sha256=sh2j15Vw_q9JiIpoMkK1VzWzR0ke8h7Ce-ClgpVWd3I,49180
|
|
25
|
+
bbstrader/metatrader/rates.py,sha256=6B-5AHguyDhicw3GqJ33FfFpdCKzxgUdlrHyPFuOLZg,20784
|
|
26
|
+
bbstrader/metatrader/risk.py,sha256=NhW8qtSg350Z6H9oLcDqOU_erqd_7Y7F5FwpfPN5Qso,27262
|
|
27
|
+
bbstrader/metatrader/scripts.py,sha256=DQGwrzqOZLX4CVWM4Du73kc5k_8RxUaIkoc8rvPTt7c,3558
|
|
28
|
+
bbstrader/metatrader/trade.py,sha256=pZRAJ9f0KQUQeguA4CsVct6DEOLpYKezaQHeO2I5Ipw,80624
|
|
29
|
+
bbstrader/metatrader/utils.py,sha256=tNLiwXxFwe-bovXxS8zu6WLg-XOBrwEr84aga07yR-Y,19727
|
|
30
|
+
bbstrader/models/__init__.py,sha256=B-bn2h_SCK6gRAs2li6dDVnvV8jDT5suZimldk5xxcw,497
|
|
31
|
+
bbstrader/models/factors.py,sha256=Y1rjwhWU4aiSRd-jFOLnLZczFCY0bJUxauCo17HvOFY,12791
|
|
32
|
+
bbstrader/models/ml.py,sha256=CxbasDRXzBF3rOF4ObpIjhJw6IZ9G3C3jwoC-o_BMyI,48809
|
|
33
|
+
bbstrader/models/nlp.py,sha256=muJQqQGw4Gq-OmJA0vzhWHXqaehn4ezq2fmP_LQVySs,32800
|
|
34
|
+
bbstrader/models/optimization.py,sha256=Fa4tdhynMmvKt5KHV9cH1TXmmJVJwU4QWpYkbeVq4aI,6395
|
|
35
|
+
bbstrader/models/portfolio.py,sha256=r-47Zrn2r7iKCHm5YVtwkbBJXAZGM3QYy-rXCWY9-Bg,8079
|
|
36
|
+
bbstrader/models/risk.py,sha256=MKCk53HtGIcivrNzH8Ikm5KMs1rXhFT5zkorUf30PyQ,506
|
|
37
|
+
bbstrader/trading/__init__.py,sha256=ycLyuuxN5SujqtzR9X0Q74UQfK93q2va-GGAXdr-KS8,457
|
|
38
|
+
bbstrader/trading/execution.py,sha256=53WrgCR8qHMeZZfZ_IwSn-Du7GKWalVDncOustaBROQ,39220
|
|
39
|
+
bbstrader/trading/scripts.py,sha256=Tf5q33WqqygjpIv43_8nA82VZ3GM0qgb4Ggo3fHJ_wg,5744
|
|
40
|
+
bbstrader/trading/strategies.py,sha256=RZ6P4SfIyRW72v0OnPnrc4Hv8X00FdxR-_sD23xe_Pg,11756
|
|
41
|
+
bbstrader/trading/utils.py,sha256=57dKF9dcRu04oU2VRqydRrzW39dCW2wlDWhVt-sZdRw,1857
|
|
42
|
+
bbstrader-0.3.2.dist-info/licenses/LICENSE,sha256=ZwC_RqqGmOPBUiMDKqLyJZ5HBeHq53LpL7TMRzrJY8c,1094
|
|
43
|
+
bbstrader-0.3.2.dist-info/METADATA,sha256=koetow8qNITciM8k0Urf-lLd0_t3h-XPWKqO0dy9ZeA,27121
|
|
44
|
+
bbstrader-0.3.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
45
|
+
bbstrader-0.3.2.dist-info/entry_points.txt,sha256=0yDCbhbgHswOzJnY5wRSM_FjjyMHGvY7lJpSSVh0xtI,54
|
|
46
|
+
bbstrader-0.3.2.dist-info/top_level.txt,sha256=Wwj322jZmxGZ6gD_TdaPiPLjED5ReObm5omerwlmZIg,10
|
|
47
|
+
bbstrader-0.3.2.dist-info/RECORD,,
|
bbstrader-0.3.0.dist-info/RECORD
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
bbstrader/__init__.py,sha256=5q_NaxJHcGYUVhC8cMWO3ZDJhjta7MrphQTYqganepY,581
|
|
2
|
-
bbstrader/__main__.py,sha256=CMQB8_BPaXQ0ovQMHdEKri6kLPOVCBXw1nR2qJkA09I,2020
|
|
3
|
-
bbstrader/compat.py,sha256=djbHMvTvy0HYm1zyZ6Ttp_LMwP2PqTSVw1r7pqbz7So,487
|
|
4
|
-
bbstrader/config.py,sha256=c2nCUw-bYWf5kkyFls5Nqld8HdMczexSilTni7rYUBw,3973
|
|
5
|
-
bbstrader/tseries.py,sha256=IMoo_8Ov5m1Q2NJ3_RW8lzok8I8vUP5Ks7YGXwEZYsw,68385
|
|
6
|
-
bbstrader/btengine/__init__.py,sha256=y1btjaEfhWsH8vuE7mBRpP9Tu-Azt9REhuVYsPCAfBU,2955
|
|
7
|
-
bbstrader/btengine/backtest.py,sha256=UiOmtqYSh72KZz0DCXz8iKrqTCOkx9Er3XjqK6H9Do8,14765
|
|
8
|
-
bbstrader/btengine/data.py,sha256=Ko1QfW8Mo2w7Nufv-pERB9NC6v9E61YzbS9b1EK-osg,27055
|
|
9
|
-
bbstrader/btengine/event.py,sha256=Ydl1avAXp9WAWOBXDAckcb9g1UkcnCO0rRzcJZwIq20,8714
|
|
10
|
-
bbstrader/btengine/execution.py,sha256=jeDbOOGEZSVHNG8fuS08WAR3ZHp-e1a-MIA3vK4Bldk,11164
|
|
11
|
-
bbstrader/btengine/performance.py,sha256=1ecWrTzHBQbk4ORvbTEKxwCzlL1brcXOEUwgbnjAwx4,12470
|
|
12
|
-
bbstrader/btengine/portfolio.py,sha256=z98M65HQeCyma8gMZkAxspxBA9jtIhzxMyJUHPPj34c,16128
|
|
13
|
-
bbstrader/btengine/scripts.py,sha256=8o66dq4Ex4DsH4s8xvJqUOFjLzZJSnbBvvNBzohtzoE,4837
|
|
14
|
-
bbstrader/btengine/strategy.py,sha256=kLw4ipCTE06y2IdEysqI5VGlJDPEIR_OrJ3Qitm_yPw,32398
|
|
15
|
-
bbstrader/core/__init__.py,sha256=GIFzFSStPfE0XM2j7mDeZZQeMTh_AwPsDOQXwMVJLgw,97
|
|
16
|
-
bbstrader/core/data.py,sha256=n04Ph4TMC0o20iZkUw9VwdXPgqNUYeLh1Klkj6lMfEU,22590
|
|
17
|
-
bbstrader/core/scripts.py,sha256=orPtnQlNNNFV-yfqFGRAIGFtWgilykZ3xyTx6d4DLsk,3963
|
|
18
|
-
bbstrader/core/utils.py,sha256=WjuabzBjhY65ku2KL-f7CMalE2x-wrX-6mCA_qhhFPE,2728
|
|
19
|
-
bbstrader/ibkr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
-
bbstrader/ibkr/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
bbstrader/metatrader/__init__.py,sha256=A5Ye9tpc2sp9Xk5qjKw-EfYsoRcZtAt8nqvC3tCtZs8,333
|
|
22
|
-
bbstrader/metatrader/account.py,sha256=rT53xK7IDUDhQj_G9rZFlTi3EgrQVEFppNSa3qmLp-g,56997
|
|
23
|
-
bbstrader/metatrader/analysis.py,sha256=pnZWdvEnf9wkPT0vhEIbZipnN5EUf6TaQftplYP9jRs,3564
|
|
24
|
-
bbstrader/metatrader/copier.py,sha256=YLu5tbw-IaG8Gs1bt64WdbracPOuZUXDGHdF6gaMTZM,32326
|
|
25
|
-
bbstrader/metatrader/rates.py,sha256=6B-5AHguyDhicw3GqJ33FfFpdCKzxgUdlrHyPFuOLZg,20784
|
|
26
|
-
bbstrader/metatrader/risk.py,sha256=jOuMcK3Y7AeglHegPC-igB4ucMILB3BVm7o5sdits5I,27248
|
|
27
|
-
bbstrader/metatrader/scripts.py,sha256=Yjp7Un-wDTInptHS_rPFpXNKWbVM871VEkaHxsO2MPQ,2115
|
|
28
|
-
bbstrader/metatrader/trade.py,sha256=I4jm6TJEYdjPNczY9eLGtMKyWITXG0BbUNRbvdBIVgk,80531
|
|
29
|
-
bbstrader/metatrader/utils.py,sha256=o1kn1z1LH07jx764MmUnTDRMNxCVeU7RzRMAtFcNLfo,19627
|
|
30
|
-
bbstrader/models/__init__.py,sha256=s2mJrtKePXQaw_PvcrtPCD2mPCdVXP4Myzg0MlLVipo,547
|
|
31
|
-
bbstrader/models/factors.py,sha256=Y1rjwhWU4aiSRd-jFOLnLZczFCY0bJUxauCo17HvOFY,12791
|
|
32
|
-
bbstrader/models/ml.py,sha256=t8SOm5Wavv5CKXLJ7YtE99OwwQuJAlarlngdXQEjFjs,47602
|
|
33
|
-
bbstrader/models/nlp.py,sha256=V_FdkVjELOKGT3k37d9rjK4Zve-TcizirIWwpeoX91Q,28749
|
|
34
|
-
bbstrader/models/optimization.py,sha256=vnks6uxFZdqXgxaZJNxq8z0IH45KZ8yaXo38JhIVKGc,6399
|
|
35
|
-
bbstrader/models/portfolio.py,sha256=r-47Zrn2r7iKCHm5YVtwkbBJXAZGM3QYy-rXCWY9-Bg,8079
|
|
36
|
-
bbstrader/models/risk.py,sha256=JQOXPshMOru6Eb0AMU6oKCNzg6mlGfL6_tN90lWcVBE,14878
|
|
37
|
-
bbstrader/trading/__init__.py,sha256=ycLyuuxN5SujqtzR9X0Q74UQfK93q2va-GGAXdr-KS8,457
|
|
38
|
-
bbstrader/trading/execution.py,sha256=nwLSfjdo-Pv_XgVM8wqIa60WmFtdSM3ho7OLmoqyPqg,37951
|
|
39
|
-
bbstrader/trading/scripts.py,sha256=Tf5q33WqqygjpIv43_8nA82VZ3GM0qgb4Ggo3fHJ_wg,5744
|
|
40
|
-
bbstrader/trading/strategies.py,sha256=BZEN8NwO9VxXDqSGc3o2OYaFyD9g5JKtEz_CyvxOOQM,37110
|
|
41
|
-
bbstrader/trading/utils.py,sha256=57dKF9dcRu04oU2VRqydRrzW39dCW2wlDWhVt-sZdRw,1857
|
|
42
|
-
bbstrader-0.3.0.dist-info/licenses/LICENSE,sha256=ZwC_RqqGmOPBUiMDKqLyJZ5HBeHq53LpL7TMRzrJY8c,1094
|
|
43
|
-
bbstrader-0.3.0.dist-info/METADATA,sha256=KXxh1p3JNoBCX-xouPt3INb7VdOMVgoivzUtABSpyPw,27263
|
|
44
|
-
bbstrader-0.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
45
|
-
bbstrader-0.3.0.dist-info/entry_points.txt,sha256=0yDCbhbgHswOzJnY5wRSM_FjjyMHGvY7lJpSSVh0xtI,54
|
|
46
|
-
bbstrader-0.3.0.dist-info/top_level.txt,sha256=Wwj322jZmxGZ6gD_TdaPiPLjED5ReObm5omerwlmZIg,10
|
|
47
|
-
bbstrader-0.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|