hyperquant 1.44__tar.gz → 1.45__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-1.44 → hyperquant-1.45}/PKG-INFO +2 -2
- {hyperquant-1.44 → hyperquant-1.45}/pyproject.toml +2 -2
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/polymarket.py +0 -6
- {hyperquant-1.44 → hyperquant-1.45}/uv.lock +1 -1
- {hyperquant-1.44 → hyperquant-1.45}/.gitignore +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/README.md +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/requirements-dev.lock +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/requirements.lock +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/__init__.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/auth.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/bitget.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/bitmart.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/coinw.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/deepcoin.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/edgex.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/hyperliquid.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/lbank.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/lib/edgex_sign.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/lib/hpstore.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/lib/hyper_types.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/lib/util.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/lighter.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/models/apexpro.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/models/bitget.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/models/bitmart.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/models/coinw.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/models/deepcoin.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/models/edgex.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/models/hyperliquid.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/models/lbank.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/models/lighter.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/models/ourbit.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/models/polymarket.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/ourbit.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/broker/ws.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/core.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/datavison/_util.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/datavison/binance.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/datavison/coinglass.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/datavison/okx.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/db.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/draw.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/logkit.py +0 -0
- {hyperquant-1.44 → hyperquant-1.45}/src/hyperquant/notikit.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hyperquant
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.45
|
|
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
|
|
@@ -13,7 +13,7 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
|
14
14
|
Classifier: Topic :: Office/Business :: Financial :: Investment
|
|
15
15
|
Requires-Python: >=3.11
|
|
16
|
-
Requires-Dist: aiohttp>=3.
|
|
16
|
+
Requires-Dist: aiohttp>=3.13
|
|
17
17
|
Requires-Dist: colorama>=0.4.6
|
|
18
18
|
Requires-Dist: cryptography>=44.0.2
|
|
19
19
|
Requires-Dist: duckdb>=1.2.2
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "hyperquant"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.45"
|
|
4
4
|
description = "A minimal yet hyper-efficient backtesting framework for quantitative trading"
|
|
5
5
|
authors = [
|
|
6
6
|
{ name = "MissinA", email = "1421329142@qq.com" }
|
|
@@ -9,7 +9,7 @@ dependencies = [
|
|
|
9
9
|
"pyecharts>=2.0.8",
|
|
10
10
|
"pandas>=2.2.3",
|
|
11
11
|
"colorama>=0.4.6",
|
|
12
|
-
"aiohttp>=3.
|
|
12
|
+
"aiohttp>=3.13",
|
|
13
13
|
"cryptography>=44.0.2",
|
|
14
14
|
"numpy>=1.21.0", # Added numpy as a new dependency
|
|
15
15
|
"duckdb>=1.2.2",
|
|
@@ -1691,12 +1691,6 @@ class Polymarket:
|
|
|
1691
1691
|
if hourly_match:
|
|
1692
1692
|
return hourly_match
|
|
1693
1693
|
|
|
1694
|
-
# 1小时市场等特殊 slug(比如 bitcoin-up-or-down-november-18-10am-et)
|
|
1695
|
-
# 直接传入完整 slug 即可,不再拼接时间戳
|
|
1696
|
-
direct_match = await _try_slug(base_slug)
|
|
1697
|
-
if direct_match:
|
|
1698
|
-
return direct_match
|
|
1699
|
-
|
|
1700
1694
|
now_ts = int(datetime.now(UTC).timestamp())
|
|
1701
1695
|
base_ts = (now_ts // interval) * interval
|
|
1702
1696
|
|
|
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
|