hyperquant 0.93__tar.gz → 0.94__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 hyperquant might be problematic. Click here for more details.

Files changed (63) hide show
  1. {hyperquant-0.93 → hyperquant-0.94}/PKG-INFO +2 -1
  2. hyperquant-0.94/apis.json +31 -0
  3. hyperquant-0.94/doc/bitmart.md +666 -0
  4. {hyperquant-0.93 → hyperquant-0.94}/pyproject.toml +5 -1
  5. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/auth.py +55 -0
  6. hyperquant-0.94/src/hyperquant/broker/bitmart.py +471 -0
  7. hyperquant-0.94/src/hyperquant/broker/lighter.py +470 -0
  8. hyperquant-0.94/src/hyperquant/broker/models/bitmart.py +487 -0
  9. hyperquant-0.94/src/hyperquant/broker/models/lighter.py +508 -0
  10. hyperquant-0.94/tests/test_bitmart.py +67 -0
  11. {hyperquant-0.93 → hyperquant-0.94}/tests/test_coinup.py +9 -5
  12. hyperquant-0.94/tests/test_lighter.py +116 -0
  13. {hyperquant-0.93 → hyperquant-0.94}/uv.lock +726 -4
  14. hyperquant-0.93/apis.json +0 -22
  15. {hyperquant-0.93 → hyperquant-0.94}/.gitignore +0 -0
  16. {hyperquant-0.93 → hyperquant-0.94}/.python-version +0 -0
  17. {hyperquant-0.93 → hyperquant-0.94}/README.md +0 -0
  18. {hyperquant-0.93 → hyperquant-0.94}/data/alpine_smoke.log +0 -0
  19. {hyperquant-0.93 → hyperquant-0.94}/data/logs/notikit.log +0 -0
  20. {hyperquant-0.93 → hyperquant-0.94}/data/logs/test_order_sync.log +0 -0
  21. {hyperquant-0.93 → hyperquant-0.94}/data/records_swap.csv +0 -0
  22. {hyperquant-0.93 → hyperquant-0.94}/data/records_swapc.csv +0 -0
  23. {hyperquant-0.93 → hyperquant-0.94}/doc/coinup.md +0 -0
  24. {hyperquant-0.93 → hyperquant-0.94}/doc/lbank.md +0 -0
  25. {hyperquant-0.93 → hyperquant-0.94}/pub.sh +0 -0
  26. {hyperquant-0.93 → hyperquant-0.94}/requirements-dev.lock +0 -0
  27. {hyperquant-0.93 → hyperquant-0.94}/requirements.lock +0 -0
  28. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/__init__.py +0 -0
  29. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/bitget.py +0 -0
  30. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/coinup.py +0 -0
  31. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/coinw.py +0 -0
  32. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/edgex.py +0 -0
  33. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/hyperliquid.py +0 -0
  34. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/lbank.py +0 -0
  35. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/lib/edgex_sign.py +0 -0
  36. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/lib/hpstore.py +0 -0
  37. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/lib/hyper_types.py +0 -0
  38. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/lib/util.py +0 -0
  39. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/models/bitget.py +0 -0
  40. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/models/coinup.py +0 -0
  41. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/models/coinw.py +0 -0
  42. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/models/edgex.py +0 -0
  43. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/models/hyperliquid.py +0 -0
  44. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/models/lbank.py +0 -0
  45. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/models/ourbit.py +0 -0
  46. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/ourbit.py +0 -0
  47. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/broker/ws.py +0 -0
  48. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/core.py +0 -0
  49. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/datavison/_util.py +0 -0
  50. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/datavison/binance.py +0 -0
  51. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/datavison/coinglass.py +0 -0
  52. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/datavison/okx.py +0 -0
  53. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/db.py +0 -0
  54. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/draw.py +0 -0
  55. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/logkit.py +0 -0
  56. {hyperquant-0.93 → hyperquant-0.94}/src/hyperquant/notikit.py +0 -0
  57. {hyperquant-0.93 → hyperquant-0.94}/tests/test_bitget.py +0 -0
  58. {hyperquant-0.93 → hyperquant-0.94}/tests/test_coinw.py +0 -0
  59. {hyperquant-0.93 → hyperquant-0.94}/tests/test_draw.py +0 -0
  60. {hyperquant-0.93 → hyperquant-0.94}/tests/test_edgex.py +0 -0
  61. {hyperquant-0.93 → hyperquant-0.94}/tests/test_lbank.py +0 -0
  62. {hyperquant-0.93 → hyperquant-0.94}/tests/test_ourbit.py +0 -0
  63. {hyperquant-0.93 → hyperquant-0.94}/tests/tmp.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hyperquant
3
- Version: 0.93
3
+ Version: 0.94
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
@@ -18,6 +18,7 @@ Requires-Dist: colorama>=0.4.6
18
18
  Requires-Dist: cryptography>=44.0.2
19
19
  Requires-Dist: curl-cffi>=0.13.0
20
20
  Requires-Dist: duckdb>=1.2.2
21
+ Requires-Dist: lighter-sdk
21
22
  Requires-Dist: numpy>=1.21.0
22
23
  Requires-Dist: pandas>=2.2.3
23
24
  Requires-Dist: pybotters>=1.9.1
@@ -0,0 +1,31 @@
1
+ {
2
+ "ourbit": [
3
+ "WEBa07743126a6cc69a896a501404ae8357e4116059ebc5bde75020881dc53a24ba"
4
+ ],
5
+ "edgex": [
6
+ "a8b730c5-9039-8253-6cfa-8526c060beb3",
7
+ "78Uke-bPB57YoRzAwY7SkWyPQFeKkPuWVQakC0k9rSI",
8
+ "3MB7nAnnNPTxAnwdbjDPew-02b746d6a832346a46a97faf054b2909c1a0b58a35e04c3504923a99a5503c1c"
9
+ ],
10
+ "lbank": [
11
+ "67782715959c4b15b5fadab8c1cec62d"
12
+ ],
13
+ "bitget":[
14
+ "bg_03e0445d9282f248d22842cfe6f30192",
15
+ "67ec894753d75fec12332881278420863a960ec39c8f5acf1de88aa1da926854",
16
+ "huainian0408"
17
+ ],
18
+ "coinw":[
19
+ "eedb6bc3-fc05-45b3-9bbc-53d2fd1b3a04",
20
+ "RGMYGU2XHXZNKRKGR6TFU1BZRKXYMOQKZUYY"
21
+ ],
22
+ "lighter":[
23
+ "e16b22286c0d0d59b6d5db986791f43f747ae4323aac7aa4d64e62b9b3832fbb93af660904587877",
24
+ "41933ec0f5dace5eee47628ea2e2cb40a491f7fd20f983b385f8bdc5eea3d3ad4a47bd745f70fc2a"
25
+ ],
26
+ "bitmart":[
27
+ "eyJoZWFkZXIiOnsidHlwIjoiQml0TWFydCIsImFsZyI6IkJNQVBJU0lYIn0sInBheWxvYWQiOnsiamlkIjoiZGIyY2EwMjYwY2QxNGI3ZDhmMTMwY2Q3YTU2YjQ1MTAiLCJ2ZXJzaW9uIjoiMjAyNTEwMzAiLCJleHBpcmVzQXQiOjE3NjE4NzkwODgzMDQsImJtIjoiRjBBVFFJc1pIaWYxZmNmNzM1TjF3S3pjL1A3OTNiWkVReDdJMm9iR0R2aGdpanBjKzVlRjhHVWVBRVg0VEJXMmdMS2FzbjhZc3p3TjRrNTU0dU8wRE9ZVmwrZ2RXMUc4YW9MRXl1UFBEUk1mU3grTTRubEFvZmRuVk9TYXdJMmJ6NmFhTk9US2d6R0wrWU5rSkhub2wrTHlHRVlQakZZMnZ6TjByb1RXd242VG5DOUw5NThrbG5YZ3pjQ0xrQW1DWFlaUXUvblNkellPRlNsbllKa0hWdE9pZFd0c0NkenpsVWNkR1lwcE1qaHdtWHlBcXQyUTN2aEtDRHVDR2pYeTV2bWhSWkR5T2pMdVVNQkhQNGRpUXNZSmNPbzZkYU1GTzlVRG5JRWhyQVl1ZDJTREYrek1xbHRkbndPb2hwdFBnUEdwOFREb25qdmpobHlFRDA2K1FML2VvTTNLalBkZFNJbEhJU3I4NGZoQnp3UXF2WWZtWlJKVjNYNjJaRDZsIn0sInNpZ25hdHVyZSI6Imo5NlFZUm9Ec0F1OG0rdXZDbzIwVmdLYnc0blhyMzIzWk16N0k2ZHlPNnppeVJHYlVYaVRBY1RlZXVrRjBXSTljTDM2SGVlM1k4OGp0ZDhFY29DM1hnPT0ifQ==",
28
+ "GWunImG8YDD20ntOTJT9KjrlzqxR2fIn",
29
+ "1UwiT974jJGn3fiqWuH2mVtrlzAwjxS8"
30
+ ]
31
+ }