hyperquant 0.57__tar.gz → 0.59__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.57 → hyperquant-0.59}/PKG-INFO +1 -1
- {hyperquant-0.57 → hyperquant-0.59}/pyproject.toml +1 -1
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/broker/models/ourbit.py +1 -1
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/broker/ourbit.py +5 -1
- {hyperquant-0.57 → hyperquant-0.59}/tests/test_ourbit.py +24 -9
- {hyperquant-0.57 → hyperquant-0.59}/uv.lock +1 -1
- {hyperquant-0.57 → hyperquant-0.59}/.gitignore +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/.python-version +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/README.md +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/apis.json +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/backtest_tmp.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/data/alpine_smoke.log +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/data/logs/notikit.log +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/data/logs/test_order_sync.log +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/deals.json +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/pnl_chart.html +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/pub.sh +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/requirements-dev.lock +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/requirements.lock +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/__init__.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/broker/auth.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/broker/hyperliquid.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/broker/lib/hpstore.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/broker/lib/hyper_types.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/broker/models/hyperliquid.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/broker/ws.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/core.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/datavison/_util.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/datavison/binance.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/datavison/coinglass.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/datavison/okx.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/db.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/draw.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/logkit.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/src/hyperquant/notikit.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/tests/test_draw.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/tests/test_lbank.py +0 -0
- {hyperquant-0.57 → hyperquant-0.59}/tests/tmp.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: hyperquant
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.59
|
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
|
@@ -70,11 +70,15 @@ class OurbitSwap:
|
|
70
70
|
|
71
71
|
for symbol in symbols:
|
72
72
|
step = self.store.detail.find({"symbol": symbol})[0].get("tick_size")
|
73
|
+
step_str = str(Decimal(str(step)).normalize())
|
73
74
|
|
74
75
|
send_jsons.append(
|
75
76
|
{
|
76
77
|
"method": "sub.depth.step",
|
77
|
-
"param": {
|
78
|
+
"param": {
|
79
|
+
"symbol": symbol,
|
80
|
+
"step": step_str,
|
81
|
+
},
|
78
82
|
}
|
79
83
|
)
|
80
84
|
|
@@ -190,21 +190,36 @@ async def test_order_close_swap():
|
|
190
190
|
# await ob.sub_personal() # 私有频道
|
191
191
|
# result = await order_sync( ob, symbol="SOL_USDT", side="buy", order_type="market", usdt_amount=8, price=200, window_sec=3)
|
192
192
|
# print(result)
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
193
|
+
oid = await ob.place_order(
|
194
|
+
"SOL_USDT",
|
195
|
+
"buy",
|
196
|
+
order_type="limit_GTC",
|
197
|
+
size=1,
|
198
|
+
price=200
|
199
|
+
)
|
200
|
+
|
201
|
+
print(oid)
|
199
202
|
|
200
203
|
# print(oid)
|
201
204
|
# await ob.update('position')
|
202
205
|
# print(ob.store.position.find())
|
203
206
|
|
204
|
-
await ob.place_order('SOL_USDT', 'close_sell', 1, position_id=6062178)
|
205
|
-
|
207
|
+
# await ob.place_order('SOL_USDT', 'close_sell', 1, position_id=6062178)
|
208
|
+
|
209
|
+
async def test_sub_book():
|
210
|
+
async with pybotters.Client(
|
211
|
+
) as client:
|
212
|
+
ob = OurbitSwap(client)
|
213
|
+
await ob.__aenter__()
|
214
|
+
ob.store.book.limit = 1
|
215
|
+
await ob.sub_orderbook(["BIO_USDT", "MAIGA_USDT", "TST_USDT"]) # 订单簿频道
|
216
|
+
async for change in ob.store.book.watch():
|
217
|
+
print(change.operation, change.data)
|
218
|
+
# while True:
|
219
|
+
# await asyncio.sleep(1)
|
220
|
+
# print(ob.store.book.find())
|
206
221
|
|
207
222
|
|
208
223
|
if __name__ == "__main__":
|
209
224
|
import asyncio
|
210
|
-
asyncio.run(
|
225
|
+
asyncio.run(test_sub_book())
|
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
|