Qubx 0.6.3__tar.gz → 0.6.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.

Potentially problematic release.


This version of Qubx might be problematic. Click here for more details.

Files changed (130) hide show
  1. {qubx-0.6.3 → qubx-0.6.4}/PKG-INFO +2 -1
  2. {qubx-0.6.3 → qubx-0.6.4}/pyproject.toml +2 -2
  3. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/cli/deploy.py +1 -3
  4. {qubx-0.6.3 → qubx-0.6.4}/README.md +0 -0
  5. {qubx-0.6.3 → qubx-0.6.4}/build.py +0 -0
  6. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/__init__.py +0 -0
  7. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/_nb_magic.py +0 -0
  8. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/backtester/__init__.py +0 -0
  9. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/backtester/account.py +0 -0
  10. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/backtester/broker.py +0 -0
  11. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/backtester/data.py +0 -0
  12. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/backtester/management.py +0 -0
  13. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/backtester/ome.py +0 -0
  14. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/backtester/optimization.py +0 -0
  15. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/backtester/runner.py +0 -0
  16. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/backtester/simulated_data.py +0 -0
  17. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/backtester/simulator.py +0 -0
  18. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/backtester/utils.py +0 -0
  19. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/cli/__init__.py +0 -0
  20. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/cli/commands.py +0 -0
  21. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/cli/misc.py +0 -0
  22. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/cli/release.py +0 -0
  23. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/connectors/ccxt/__init__.py +0 -0
  24. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/connectors/ccxt/account.py +0 -0
  25. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/connectors/ccxt/broker.py +0 -0
  26. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/connectors/ccxt/customizations.py +0 -0
  27. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/connectors/ccxt/data.py +0 -0
  28. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/connectors/ccxt/exceptions.py +0 -0
  29. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/connectors/ccxt/factory.py +0 -0
  30. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/connectors/ccxt/utils.py +0 -0
  31. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/__init__.py +0 -0
  32. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/account.py +0 -0
  33. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/basics.py +0 -0
  34. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/context.py +0 -0
  35. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/exceptions.py +0 -0
  36. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/helpers.py +0 -0
  37. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/initializer.py +0 -0
  38. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/interfaces.py +0 -0
  39. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/loggers.py +0 -0
  40. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/lookups.py +0 -0
  41. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/metrics.py +0 -0
  42. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/mixins/__init__.py +0 -0
  43. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/mixins/market.py +0 -0
  44. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/mixins/processing.py +0 -0
  45. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/mixins/subscription.py +0 -0
  46. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/mixins/trading.py +0 -0
  47. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/mixins/universe.py +0 -0
  48. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/series.pxd +0 -0
  49. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/series.pyi +0 -0
  50. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/series.pyx +0 -0
  51. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/utils.pyi +0 -0
  52. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/core/utils.pyx +0 -0
  53. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/data/__init__.py +0 -0
  54. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/data/composite.py +0 -0
  55. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/data/helpers.py +0 -0
  56. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/data/hft.py +0 -0
  57. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/data/readers.py +0 -0
  58. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/data/tardis.py +0 -0
  59. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/exporters/__init__.py +0 -0
  60. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/exporters/composite.py +0 -0
  61. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/exporters/formatters/__init__.py +0 -0
  62. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/exporters/formatters/base.py +0 -0
  63. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/exporters/formatters/incremental.py +0 -0
  64. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/exporters/formatters/slack.py +0 -0
  65. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/exporters/redis_streams.py +0 -0
  66. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/exporters/slack.py +0 -0
  67. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/features/__init__.py +0 -0
  68. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/features/core.py +0 -0
  69. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/features/orderbook.py +0 -0
  70. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/features/price.py +0 -0
  71. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/features/trades.py +0 -0
  72. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/features/utils.py +0 -0
  73. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/gathering/simplest.py +0 -0
  74. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/math/__init__.py +0 -0
  75. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/math/stats.py +0 -0
  76. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/pandaz/__init__.py +0 -0
  77. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/pandaz/ta.py +0 -0
  78. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/pandaz/utils.py +0 -0
  79. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/resources/instruments/symbols-binance.cm.json +0 -0
  80. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/resources/instruments/symbols-binance.json +0 -0
  81. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/resources/instruments/symbols-binance.um.json +0 -0
  82. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/resources/instruments/symbols-bitfinex.f.json +0 -0
  83. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/resources/instruments/symbols-bitfinex.json +0 -0
  84. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/resources/instruments/symbols-kraken.f.json +0 -0
  85. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/resources/instruments/symbols-kraken.json +0 -0
  86. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/restarts/__init__.py +0 -0
  87. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/restarts/state_resolvers.py +0 -0
  88. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/restarts/time_finders.py +0 -0
  89. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/restorers/__init__.py +0 -0
  90. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/restorers/balance.py +0 -0
  91. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/restorers/factory.py +0 -0
  92. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/restorers/interfaces.py +0 -0
  93. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/restorers/position.py +0 -0
  94. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/restorers/signal.py +0 -0
  95. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/restorers/state.py +0 -0
  96. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/restorers/utils.py +0 -0
  97. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/ta/__init__.py +0 -0
  98. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/ta/indicators.pxd +0 -0
  99. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/ta/indicators.pyi +0 -0
  100. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/ta/indicators.pyx +0 -0
  101. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/trackers/__init__.py +0 -0
  102. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/trackers/advanced.py +0 -0
  103. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/trackers/composite.py +0 -0
  104. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/trackers/rebalancers.py +0 -0
  105. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/trackers/riskctrl.py +0 -0
  106. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/trackers/sizers.py +0 -0
  107. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/__init__.py +0 -0
  108. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/_pyxreloader.py +0 -0
  109. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/charting/lookinglass.py +0 -0
  110. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/charting/mpl_helpers.py +0 -0
  111. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/marketdata/binance.py +0 -0
  112. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/marketdata/ccxt.py +0 -0
  113. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/marketdata/dukas.py +0 -0
  114. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/misc.py +0 -0
  115. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/ntp.py +0 -0
  116. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/numbers_utils.py +0 -0
  117. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/orderbook.py +0 -0
  118. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/plotting/__init__.py +0 -0
  119. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/plotting/dashboard.py +0 -0
  120. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/plotting/data.py +0 -0
  121. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/plotting/interfaces.py +0 -0
  122. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/plotting/renderers/__init__.py +0 -0
  123. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/plotting/renderers/plotly.py +0 -0
  124. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/runner/__init__.py +0 -0
  125. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/runner/_jupyter_runner.pyt +0 -0
  126. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/runner/accounts.py +0 -0
  127. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/runner/configs.py +0 -0
  128. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/runner/runner.py +0 -0
  129. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/time.py +0 -0
  130. {qubx-0.6.3 → qubx-0.6.4}/src/qubx/utils/version.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: Qubx
3
- Version: 0.6.3
3
+ Version: 0.6.4
4
4
  Summary: Qubx - Quantitative Trading Framework
5
5
  Author: Dmitry Marienko
6
6
  Author-email: dmitry.marienko@xlydian.com
@@ -16,6 +16,7 @@ Requires-Dist: cython (==3.0.8)
16
16
  Requires-Dist: dash (>=2.18.2,<3.0.0)
17
17
  Requires-Dist: dash-bootstrap-components (>=1.6.0,<2.0.0)
18
18
  Requires-Dist: gitpython (>=3.1.44,<4.0.0)
19
+ Requires-Dist: hftbacktest (>=2.2.0,<3.0.0)
19
20
  Requires-Dist: importlib-metadata
20
21
  Requires-Dist: ipywidgets (>=8.1.5,<9.0.0)
21
22
  Requires-Dist: jupyter (>=1.1.1,<2.0.0)
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "Qubx"
7
- version = "0.6.3"
7
+ version = "0.6.4"
8
8
  description = "Qubx - Quantitative Trading Framework"
9
9
  authors = [ "Dmitry Marienko <dmitry.marienko@xlydian.com>", "Yuriy Arabskyy <yuriy.arabskyy@xlydian.com>",]
10
10
  readme = "README.md"
@@ -69,6 +69,7 @@ gitpython = "^3.1.44"
69
69
  jupyter = "^1.1.1"
70
70
  jupyter-console = "^6.6.3"
71
71
  ipywidgets = "^8.1.5"
72
+ hftbacktest = "^2.2.0"
72
73
 
73
74
  [tool.ruff.lint]
74
75
  extend-select = [ "I",]
@@ -105,7 +106,6 @@ jinja2 = "3.1.5"
105
106
  mike = "2.1.3"
106
107
  mkdocs-jupyter = "0.25.1"
107
108
  debugpy = "^1.8.12"
108
- hftbacktest = "^2.2.0"
109
109
 
110
110
  [tool.poetry.group.test.dependencies]
111
111
  pytest-asyncio = "^0.24.0"
@@ -109,9 +109,7 @@ def ensure_poetry_lock_exists(output_dir: str) -> bool:
109
109
  if not os.path.exists(poetry_lock_path):
110
110
  logger.warning("poetry.lock not found in the zip file. Attempting to generate it.")
111
111
  try:
112
- subprocess.run(
113
- ["poetry", "lock", "--no-update"], cwd=output_dir, check=True, capture_output=True, text=True
114
- )
112
+ subprocess.run(["poetry", "lock"], cwd=output_dir, check=True, capture_output=True, text=True)
115
113
  return True
116
114
  except subprocess.CalledProcessError as e:
117
115
  logger.error(f"Failed to generate poetry.lock: {e.stderr}")
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
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