akquant 0.1.2__tar.gz → 0.1.3__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.
Potentially problematic release.
This version of akquant might be problematic. Click here for more details.
- {akquant-0.1.2 → akquant-0.1.3}/Cargo.lock +1 -1
- {akquant-0.1.2 → akquant-0.1.3}/Cargo.toml +1 -1
- {akquant-0.1.2 → akquant-0.1.3}/PKG-INFO +8 -3
- {akquant-0.1.2 → akquant-0.1.3}/pyproject.toml +7 -1
- {akquant-0.1.2 → akquant-0.1.3}/DESIGN.md +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/LICENSE +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/README.md +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/data.csv +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/docs/api.md +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/docs/architecture.md +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/docs/examples.md +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/docs/index.md +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/docs/installation.md +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/docs/quickstart.md +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/docs/strategy_guide.md +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/examples/benchmark_akquant_multi.py +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/examples/benchmark_utils.py +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/mkdocs.yml +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/python/akquant/__init__.py +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/python/akquant/akquant.pyi +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/python/akquant/backtest.py +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/python/akquant/config.py +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/python/akquant/data.py +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/python/akquant/indicator.py +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/python/akquant/log.py +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/python/akquant/sizer.py +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/python/akquant/strategy.py +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/python/akquant/utils.py +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/analysis.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/bin/stub_gen.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/clock.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/context.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/data.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/engine.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/execution.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/indicators.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/lib.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/market.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/model/instrument.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/model/market_data.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/model/mod.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/model/order.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/model/timer.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/model/types.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/order.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/portfolio.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/risk.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/src/types.rs +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/tests/test_engine.py +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/tests/test_portfolio.py +0 -0
- {akquant-0.1.2 → akquant-0.1.3}/tests/test_risk.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: akquant
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Classifier: Programming Language :: Rust
|
|
5
5
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
6
6
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
@@ -8,8 +8,13 @@ Classifier: Programming Language :: Python :: 3
|
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
9
|
Requires-Dist: pandas>=1.0.0
|
|
10
10
|
Requires-Dist: numpy>=1.0.0
|
|
11
|
-
Requires-Dist: akshare>=1.0.0
|
|
12
|
-
Requires-Dist:
|
|
11
|
+
Requires-Dist: akshare>=1.0.0 ; extra == 'data'
|
|
12
|
+
Requires-Dist: akshare>=1.0.0 ; extra == 'full'
|
|
13
|
+
Requires-Dist: matplotlib>=3.0.0 ; extra == 'full'
|
|
14
|
+
Requires-Dist: matplotlib>=3.0.0 ; extra == 'plot'
|
|
15
|
+
Provides-Extra: data
|
|
16
|
+
Provides-Extra: full
|
|
17
|
+
Provides-Extra: plot
|
|
13
18
|
License-File: LICENSE
|
|
14
19
|
Summary: High-performance quantitative trading framework based on Rust and Python
|
|
15
20
|
Author: Akquant Developers
|
|
@@ -4,7 +4,7 @@ build-backend = "maturin"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "akquant"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.3"
|
|
8
8
|
description = "High-performance quantitative trading framework based on Rust and Python"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {file = "LICENSE"}
|
|
@@ -20,9 +20,15 @@ requires-python = ">=3.9"
|
|
|
20
20
|
dependencies = [
|
|
21
21
|
"pandas>=1.0.0",
|
|
22
22
|
"numpy>=1.0.0",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[project.optional-dependencies]
|
|
26
|
+
full = [
|
|
23
27
|
"akshare>=1.0.0",
|
|
24
28
|
"matplotlib>=3.0.0",
|
|
25
29
|
]
|
|
30
|
+
data = ["akshare>=1.0.0"]
|
|
31
|
+
plot = ["matplotlib>=3.0.0"]
|
|
26
32
|
|
|
27
33
|
[tool.maturin]
|
|
28
34
|
features = ["pyo3/extension-module"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|