hyperquant 0.6__tar.gz → 0.7__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.
- {hyperquant-0.6 → hyperquant-0.7}/PKG-INFO +1 -1
- hyperquant-0.7/apis.json +13 -0
- hyperquant-0.7/doc/edgex_act.md +1592 -0
- hyperquant-0.7/doc/edgex_debug.md +2 -0
- hyperquant-0.7/doc/edgex_order.md +1767 -0
- hyperquant-0.7/doc/edgex_ws.md +0 -0
- hyperquant-0.7/doc/lbank.md +582 -0
- {hyperquant-0.6 → hyperquant-0.7}/pyproject.toml +1 -1
- hyperquant-0.7/src/hyperquant/broker/auth.py +223 -0
- hyperquant-0.7/src/hyperquant/broker/bitget.py +101 -0
- hyperquant-0.7/src/hyperquant/broker/edgex.py +500 -0
- hyperquant-0.7/src/hyperquant/broker/lbank.py +354 -0
- hyperquant-0.7/src/hyperquant/broker/lib/edgex_sign.py +455 -0
- hyperquant-0.7/src/hyperquant/broker/lib/util.py +22 -0
- hyperquant-0.7/src/hyperquant/broker/models/bitget.py +283 -0
- hyperquant-0.7/src/hyperquant/broker/models/edgex.py +1053 -0
- hyperquant-0.7/src/hyperquant/broker/models/lbank.py +547 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/broker/ws.py +21 -3
- hyperquant-0.7/tests/test_bitget.py +59 -0
- hyperquant-0.7/tests/test_edgex.py +199 -0
- hyperquant-0.7/tests/test_lbank.py +254 -0
- hyperquant-0.7/tests/tmp.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/uv.lock +1 -1
- hyperquant-0.6/apis.json +0 -5
- hyperquant-0.6/backtest_tmp.py +0 -33
- hyperquant-0.6/deals.json +0 -33105
- hyperquant-0.6/src/hyperquant/broker/auth.py +0 -88
- hyperquant-0.6/src/hyperquant/broker/edgex.py +0 -183
- hyperquant-0.6/src/hyperquant/broker/models/edgex.py +0 -513
- hyperquant-0.6/tests/test_edgex.py +0 -26
- hyperquant-0.6/tests/test_lbank.py +0 -34
- hyperquant-0.6/tests/tmp.py +0 -181
- {hyperquant-0.6 → hyperquant-0.7}/.gitignore +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/.python-version +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/README.md +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/data/alpine_smoke.log +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/data/logs/notikit.log +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/data/logs/test_order_sync.log +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/data/records_swap.csv +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/data/records_swapc.csv +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/pub.sh +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/requirements-dev.lock +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/requirements.lock +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/__init__.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/broker/hyperliquid.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/broker/lib/hpstore.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/broker/lib/hyper_types.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/broker/models/hyperliquid.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/broker/models/ourbit.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/broker/ourbit.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/core.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/datavison/_util.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/datavison/binance.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/datavison/coinglass.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/datavison/okx.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/db.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/draw.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/logkit.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/src/hyperquant/notikit.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/tests/test_draw.py +0 -0
- {hyperquant-0.6 → hyperquant-0.7}/tests/test_ourbit.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: hyperquant
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.7
|
4
4
|
Summary: A minimal yet hyper-efficient backtesting framework for quantitative trading
|
5
5
|
Project-URL: Homepage, https://github.com/yourusername/hyperquant
|
6
6
|
Project-URL: Issues, https://github.com/yourusername/hyperquant/issues
|
hyperquant-0.7/apis.json
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
{
|
2
|
+
"ourbit": [
|
3
|
+
"WEBa07743126a6cc69a896a501404ae8357e4116059ebc5bde75020881dc53a24ba"
|
4
|
+
],
|
5
|
+
"edgex": [
|
6
|
+
"a8b730c5-9039-8253-6cfa-8526c060beb3",
|
7
|
+
"78Uke-bPB57YoRzAwY7SkWyPQFeKkPuWVQakC0k9rSI",
|
8
|
+
"3MB7nAnnNPTxAnwdbjDPew-02b746d6a832346a46a97faf054b2909c1a0b58a35e04c3504923a99a5503c1c"
|
9
|
+
],
|
10
|
+
"lbank": [
|
11
|
+
"617a2d77b4cd4dfbbaa2094c17017bdb"
|
12
|
+
]
|
13
|
+
}
|