hypertrader 0.1.3__tar.gz → 0.1.4__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.
Files changed (21) hide show
  1. {hypertrader-0.1.3 → hypertrader-0.1.4}/PKG-INFO +1 -1
  2. {hypertrader-0.1.3 → hypertrader-0.1.4}/hypertrader.egg-info/PKG-INFO +1 -1
  3. {hypertrader-0.1.3 → hypertrader-0.1.4}/modes/auto_trader.py +2 -2
  4. {hypertrader-0.1.3 → hypertrader-0.1.4}/setup.py +1 -1
  5. {hypertrader-0.1.3 → hypertrader-0.1.4}/README.md +0 -0
  6. {hypertrader-0.1.3 → hypertrader-0.1.4}/hypertrader.egg-info/SOURCES.txt +0 -0
  7. {hypertrader-0.1.3 → hypertrader-0.1.4}/hypertrader.egg-info/dependency_links.txt +0 -0
  8. {hypertrader-0.1.3 → hypertrader-0.1.4}/hypertrader.egg-info/entry_points.txt +0 -0
  9. {hypertrader-0.1.3 → hypertrader-0.1.4}/hypertrader.egg-info/requires.txt +0 -0
  10. {hypertrader-0.1.3 → hypertrader-0.1.4}/hypertrader.egg-info/top_level.txt +0 -0
  11. {hypertrader-0.1.3 → hypertrader-0.1.4}/hypertrader.py +0 -0
  12. {hypertrader-0.1.3 → hypertrader-0.1.4}/modes/market_maker.py +0 -0
  13. {hypertrader-0.1.3 → hypertrader-0.1.4}/modes/position_management.py +0 -0
  14. {hypertrader-0.1.3 → hypertrader-0.1.4}/modes/position_watcher.py +0 -0
  15. {hypertrader-0.1.3 → hypertrader-0.1.4}/modes/trailing_stop.py +0 -0
  16. {hypertrader-0.1.3 → hypertrader-0.1.4}/setup.cfg +0 -0
  17. {hypertrader-0.1.3 → hypertrader-0.1.4}/utils/constants.py +0 -0
  18. {hypertrader-0.1.3 → hypertrader-0.1.4}/utils/helpers.py +0 -0
  19. {hypertrader-0.1.3 → hypertrader-0.1.4}/utils/style.py +0 -0
  20. {hypertrader-0.1.3 → hypertrader-0.1.4}/utils/timer.py +0 -0
  21. {hypertrader-0.1.3 → hypertrader-0.1.4}/utils/worker.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hypertrader
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: Async Hyperliquid trading helper built on the async SDK.
5
5
  Author: darkerego
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hypertrader
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: Async Hyperliquid trading helper built on the async SDK.
5
5
  Author: darkerego
6
6
  License: MIT
@@ -2226,8 +2226,8 @@ async def run_auto_trader(
2226
2226
  f"sleeping {startup_backfill_state.pause_seconds:.1f}s before the normal scan interval."
2227
2227
  )
2228
2228
  await asyncio.sleep(startup_backfill_state.pause_seconds)
2229
- else:
2230
- await asyncio.sleep(scan_interval)
2229
+
2230
+ await asyncio.sleep(scan_interval)
2231
2231
 
2232
2232
  while True:
2233
2233
  _iter +=1
@@ -9,7 +9,7 @@ README = ROOT / "README.md"
9
9
 
10
10
  setup(
11
11
  name="hypertrader",
12
- version="0.1.3",
12
+ version="0.1.4",
13
13
  description="Async Hyperliquid trading helper built on the async SDK.",
14
14
  long_description=README.read_text(encoding="utf-8"),
15
15
  long_description_content_type="text/markdown",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes