Qubx 0.7.7__cp312-cp312-manylinux_2_39_x86_64.whl → 0.7.8__cp312-cp312-manylinux_2_39_x86_64.whl
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.
- qubx/backtester/runner.py +1 -0
- qubx/connectors/xlighter/constants.py +1 -1
- qubx/core/series.cpython-312-x86_64-linux-gnu.so +0 -0
- qubx/core/utils.cpython-312-x86_64-linux-gnu.so +0 -0
- qubx/ta/indicators.cpython-312-x86_64-linux-gnu.so +0 -0
- qubx/utils/hft/orderbook.cpython-312-x86_64-linux-gnu.so +0 -0
- qubx/utils/ringbuffer.cpython-312-x86_64-linux-gnu.so +0 -0
- qubx/utils/runner/runner.py +1 -1
- {qubx-0.7.7.dist-info → qubx-0.7.8.dist-info}/METADATA +1 -1
- {qubx-0.7.7.dist-info → qubx-0.7.8.dist-info}/RECORD +13 -13
- {qubx-0.7.7.dist-info → qubx-0.7.8.dist-info}/WHEEL +0 -0
- {qubx-0.7.7.dist-info → qubx-0.7.8.dist-info}/entry_points.txt +0 -0
- {qubx-0.7.7.dist-info → qubx-0.7.8.dist-info}/licenses/LICENSE +0 -0
qubx/backtester/runner.py
CHANGED
|
@@ -477,6 +477,7 @@ class SimulationRunner:
|
|
|
477
477
|
logging=StrategyLogging(logs_writer, portfolio_log_freq=self.portfolio_log_freq),
|
|
478
478
|
aux_data_provider=self._aux_data_reader,
|
|
479
479
|
emitter=self.emitter,
|
|
480
|
+
strategy_name=self.setup.name,
|
|
480
481
|
strategy_state=self.strategy_state,
|
|
481
482
|
notifier=self.notifier,
|
|
482
483
|
initializer=self.initializer,
|
|
@@ -74,7 +74,7 @@ WS_BASE_TESTNET = "wss://testnet.zklighter.elliot.ai/stream"
|
|
|
74
74
|
|
|
75
75
|
DEFAULT_PING_INTERVAL = None
|
|
76
76
|
DEFAULT_PING_TIMEOUT = None
|
|
77
|
-
DEFAULT_MAX_RETRIES =
|
|
77
|
+
DEFAULT_MAX_RETRIES = 999999 # Effectively infinite retries for websocket reconnection
|
|
78
78
|
DEFAULT_MAX_SIZE = None
|
|
79
79
|
DEFAULT_MAX_QUEUE = 5000
|
|
80
80
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
qubx/utils/runner/runner.py
CHANGED
|
@@ -773,7 +773,7 @@ def _run_warmup(
|
|
|
773
773
|
warmup_runner = SimulationRunner(
|
|
774
774
|
setup=SimulationSetup(
|
|
775
775
|
setup_type=SetupTypes.STRATEGY,
|
|
776
|
-
name=
|
|
776
|
+
name=ctx.strategy_name,
|
|
777
777
|
generator=ctx.strategy,
|
|
778
778
|
tracker=None,
|
|
779
779
|
instruments=instruments,
|
|
@@ -7,7 +7,7 @@ qubx/backtester/data.py,sha256=eDS-fe44m6dKy3hp2P7Gll2HRZRpsf_EG-K52Z3zsx8,8057
|
|
|
7
7
|
qubx/backtester/management.py,sha256=AjTvGzLywJApWTFc1nFktd5E35sN6K6LkjwR-ZAiQz0,21190
|
|
8
8
|
qubx/backtester/ome.py,sha256=LnnSANMD2XBo18JtLRh96Ey9BH_StrfshQnCu2_aOc4,18646
|
|
9
9
|
qubx/backtester/optimization.py,sha256=HHUIYA6Y66rcOXoePWFOuOVX9iaHGKV0bGt_4d5e6FM,7619
|
|
10
|
-
qubx/backtester/runner.py,sha256=
|
|
10
|
+
qubx/backtester/runner.py,sha256=26dYyMLq7OlxLe4cHNVZRUfIAlaeQ6utEUkyUBKBXxc,25731
|
|
11
11
|
qubx/backtester/sentinels.py,sha256=wuRfPHpepxXwTBxtbLxcGfK2BpnUn_j-Gbg103MQL38,792
|
|
12
12
|
qubx/backtester/simulated_data.py,sha256=QuVrs69-IeQLnkcax9N5VMtHjbxEId9cmUY_b9eRSYg,19678
|
|
13
13
|
qubx/backtester/simulated_exchange.py,sha256=6ZsxkfTkp5CfFU_Fzjm7LwsQk-GTA3Nm00tDUD-Ja8I,8164
|
|
@@ -63,7 +63,7 @@ qubx/connectors/xlighter/__init__.py,sha256=6Cs8jUvlDasyjue5KFQBgp5ws7Sh-BiMd-O2
|
|
|
63
63
|
qubx/connectors/xlighter/account.py,sha256=Z1iGxRJezFrgNYrnyv9O9hAxc5hgme5R3kVWFbyqsd8,19717
|
|
64
64
|
qubx/connectors/xlighter/broker.py,sha256=AeqVMwTn-1oyEvChFt2WLJktrQZvrDAcimX0QSFR4Ug,28681
|
|
65
65
|
qubx/connectors/xlighter/client.py,sha256=0u99uK93KUIvqPRRdY5tAklO5FLPmLRwTb2qk9sABTs,14685
|
|
66
|
-
qubx/connectors/xlighter/constants.py,sha256=
|
|
66
|
+
qubx/connectors/xlighter/constants.py,sha256=l4R1ednOGpvwJ9qnPG6bjsL6YY6QJA6kKNwu1bZXLGE,4200
|
|
67
67
|
qubx/connectors/xlighter/data.py,sha256=4aXsxv5owmW2SljAo5ueF38LkZiPeM_s4Mc5dOj_i0g,32545
|
|
68
68
|
qubx/connectors/xlighter/extensions.py,sha256=_AxsB24I_sOU6Efvw4oKxhQ-dAI-U7IISn9NiAUoXZs,8915
|
|
69
69
|
qubx/connectors/xlighter/factory.py,sha256=ODGxw6gNQ5W93ohj8JTPpJW_ShA5s7S5fCtAp-W0XIw,11144
|
|
@@ -103,11 +103,11 @@ qubx/core/mixins/subscription.py,sha256=2nUikNNPsMExS9yO38kNt7jk1vKE-RPm0b3h1bU6
|
|
|
103
103
|
qubx/core/mixins/trading.py,sha256=jW4P6Gba0O1kaQIy5rl3UqwPwAmEJrMdGYoWj1AhleI,20422
|
|
104
104
|
qubx/core/mixins/universe.py,sha256=aj1Ai_WUccotBt419SMPgAf2xPZL5n0U9CdTD4tQGGI,10845
|
|
105
105
|
qubx/core/mixins/utils.py,sha256=P71cLuqKjId8989MwOL_BtvvCnnwOFMkZyB1SY-0Ork,147
|
|
106
|
-
qubx/core/series.cpython-312-x86_64-linux-gnu.so,sha256=
|
|
106
|
+
qubx/core/series.cpython-312-x86_64-linux-gnu.so,sha256=hOSgcJl95WnFUqa4SFzh-0qS_Lw1rfrslKm6fLyEIYE,1192328
|
|
107
107
|
qubx/core/series.pxd,sha256=DebCNOl7e7_OIZLTG-vSqubcgYuE0EC2_0-dov7QoIM,5195
|
|
108
108
|
qubx/core/series.pyi,sha256=5xJ0-_SOGhfGgbu1RGyjP4b0T6oRyckS9LoRePPAHqs,8050
|
|
109
109
|
qubx/core/series.pyx,sha256=A-6BbaweFmeuwNvcg-yMrLPQodAFbjZeHqrVfvE2x-o,63520
|
|
110
|
-
qubx/core/utils.cpython-312-x86_64-linux-gnu.so,sha256=
|
|
110
|
+
qubx/core/utils.cpython-312-x86_64-linux-gnu.so,sha256=EKXmr4_F4VOnQAO4LEfCIDbhR3cykEDoEcuhyyZS9Qw,86568
|
|
111
111
|
qubx/core/utils.pyi,sha256=a-wS13V2p_dM1CnGq40JVulmiAhixTwVwt0ah5By0Hc,348
|
|
112
112
|
qubx/core/utils.pyx,sha256=UR9achMR-LARsztd2eelFsDsFH3n0gXACIKoGNPI9X4,1766
|
|
113
113
|
qubx/data/__init__.py,sha256=cCUJjuq0LCBeeOKXIvBh_YQI00je_IQmr9OcHARJCPE,896
|
|
@@ -188,7 +188,7 @@ qubx/restorers/signal.py,sha256=5nK5ji8AucyWrFBK9uW619YCI_vPRGFnuDu8JnG3B_Y,1451
|
|
|
188
188
|
qubx/restorers/state.py,sha256=I1VIN0ZcOjigc3WMHIYTNJeAAbN9YB21MDcMl04ZWmY,8018
|
|
189
189
|
qubx/restorers/utils.py,sha256=We2gfqwQKWziUYhuUnjb-xo-5tSlbuHWpPQn0CEMTn0,1155
|
|
190
190
|
qubx/ta/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
|
-
qubx/ta/indicators.cpython-312-x86_64-linux-gnu.so,sha256=
|
|
191
|
+
qubx/ta/indicators.cpython-312-x86_64-linux-gnu.so,sha256=bpSBV03cba9q3Ot77thsEktMWz5xxDVasGnEIkoLH6Y,946344
|
|
192
192
|
qubx/ta/indicators.pxd,sha256=Tp8eBSdur-cAdChZjAow6sJi5URyVr8zkcPYZbu9vVU,6433
|
|
193
193
|
qubx/ta/indicators.pyi,sha256=XNySCW8WE3j4lpCUU2BKRjnAQ7kjjGBXvdowhLBuEAM,3719
|
|
194
194
|
qubx/ta/indicators.pyx,sha256=qtI0UbI9C3iwhY4zU1uoNN0kiV-pd-1YU04T7_LObLI,54845
|
|
@@ -223,7 +223,7 @@ qubx/utils/charting/orderbook.py,sha256=NmeXxru3CUiKLtl1DzCBbQgSdL4qmTDIxV0u81p2
|
|
|
223
223
|
qubx/utils/collections.py,sha256=go2sH_q2TlXqI3Vxq8GHLfNGlYL4JwS3X1lwJWbpFLE,7425
|
|
224
224
|
qubx/utils/hft/__init__.py,sha256=rZjNmRtD1TWAEe7JPgiak9qJftf8yQavLviWReKQJ5w,101
|
|
225
225
|
qubx/utils/hft/numba_utils.py,sha256=C_C3MwEW5ZbLhOMSH6SSYbQ7BfnvuKhgOtY_N-U-ULM,146
|
|
226
|
-
qubx/utils/hft/orderbook.cpython-312-x86_64-linux-gnu.so,sha256=
|
|
226
|
+
qubx/utils/hft/orderbook.cpython-312-x86_64-linux-gnu.so,sha256=L4Mu802oG4u6gTQILFLvdct3RA7gwdKEYnse2-xP9LM,316592
|
|
227
227
|
qubx/utils/hft/orderbook.pyi,sha256=F2P9kbh314wjCwfn6BivFWQMEDMLnZDQ2rmWbGoM7-o,5076
|
|
228
228
|
qubx/utils/hft/orderbook.pyx,sha256=gbNrtpNRZjZ8DjXjrIXsw20UixErDrLzN-8Qep8sSJg,15217
|
|
229
229
|
qubx/utils/marketdata/binance.py,sha256=hWX3noZj704JIMBqlwsXA5IzUP7EgiLiC2r12dJAKQA,11565
|
|
@@ -242,7 +242,7 @@ qubx/utils/plotting/renderers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
242
242
|
qubx/utils/plotting/renderers/plotly.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
243
243
|
qubx/utils/questdb.py,sha256=fIOMImSa3N3eZKMakHqs5q5ld4m5jkG6IkrTGfuvXFg,5191
|
|
244
244
|
qubx/utils/rate_limiter.py,sha256=nI4yJ2VjTGoHYPQvURyd7rtpfn37ms6xd0hLt6RJeDc,7008
|
|
245
|
-
qubx/utils/ringbuffer.cpython-312-x86_64-linux-gnu.so,sha256=
|
|
245
|
+
qubx/utils/ringbuffer.cpython-312-x86_64-linux-gnu.so,sha256=8qFA1OW-OKe7mRLX_w0Un0bo-Nnz8DHJttqDm5nZ288,108328
|
|
246
246
|
qubx/utils/ringbuffer.pxd,sha256=NiLNnVwSJuDZj6M99DnHt07OEhKVBlEEf80rNukJJeQ,374
|
|
247
247
|
qubx/utils/ringbuffer.pyi,sha256=H0MD68jctVlko09KfxI9-1MloapO5Ba6smaqx1_X5Zo,4580
|
|
248
248
|
qubx/utils/ringbuffer.pyx,sha256=3S8MQreAKMfhaMm3RwztfEQ2AJYDyfPQpfMAsb-JCWA,7069
|
|
@@ -252,7 +252,7 @@ qubx/utils/runner/accounts.py,sha256=FCQQ9R2k3ziQxUZIBHZfEMYd17q5GuoY5JwftABVCwM
|
|
|
252
252
|
qubx/utils/runner/configs.py,sha256=fTc-Z8Na7seyZd70hFCMr19I_v-QpnYftPV5Uzf8G6I,9450
|
|
253
253
|
qubx/utils/runner/factory.py,sha256=H-9wdFR7mgmN9Iy2lzl4mMyep4SuUmgAA4moXyJGAK4,16249
|
|
254
254
|
qubx/utils/runner/kernel_service.py,sha256=cz9_WuTR6RVKis0V1tnahn-WS8e0i3TJYQLNgVxNed4,6787
|
|
255
|
-
qubx/utils/runner/runner.py,sha256=
|
|
255
|
+
qubx/utils/runner/runner.py,sha256=Q2jYPai-VNwCf2qX8FiZvy0Xm8pkWSgHpM-WH3Pwv3c,38851
|
|
256
256
|
qubx/utils/runner/textual/__init__.py,sha256=aRwMPKkK0ZPk7_Y6CMxVNo4ENqsG4lBIGXzCBaeDLOA,6303
|
|
257
257
|
qubx/utils/runner/textual/app.py,sha256=b8PpEy7Y9YVP4nu76xK3mZIN64Hw0azWoTa-2QtuX8g,17742
|
|
258
258
|
qubx/utils/runner/textual/handlers.py,sha256=a1nDL79ssTuYP_YT47ZPthjpN0piNO1N9G3CPDZJzzA,3726
|
|
@@ -270,8 +270,8 @@ qubx/utils/slack.py,sha256=jhos-5pNGomg3TvFZRVvF0b_FrzxfvnTqAEMlDIrgn8,12234
|
|
|
270
270
|
qubx/utils/time.py,sha256=SYOiz2UqX7dCUhO_vBeWcm42_LmDl-59wp7INu0R8is,15355
|
|
271
271
|
qubx/utils/version.py,sha256=e52fIHyxzCiIuH7svCF6pkHuDlqL64rklqz-2XjWons,5309
|
|
272
272
|
qubx/utils/websocket_manager.py,sha256=ld4jvwnWyIkdKpgpUzyfnXGT3Ul4bGemXjy4HX9XTKs,17182
|
|
273
|
-
qubx-0.7.
|
|
274
|
-
qubx-0.7.
|
|
275
|
-
qubx-0.7.
|
|
276
|
-
qubx-0.7.
|
|
277
|
-
qubx-0.7.
|
|
273
|
+
qubx-0.7.8.dist-info/METADATA,sha256=xh4v87OPu7bopjmyNjaPFDXZAi-sZhp3DoOLdRfPgkM,6062
|
|
274
|
+
qubx-0.7.8.dist-info/WHEEL,sha256=RA6gLSyyVpI0R7d3ofBrM1iY5kDUsPwh15AF0XpvgQo,110
|
|
275
|
+
qubx-0.7.8.dist-info/entry_points.txt,sha256=VqilDTe8mVuV9SbR-yVlZJBTjbkHIL2JBgXfQw076HY,47
|
|
276
|
+
qubx-0.7.8.dist-info/licenses/LICENSE,sha256=qwMHOSJ2TD0nx6VUJvFhu1ynJdBfNozRMt6tnSul-Ts,35140
|
|
277
|
+
qubx-0.7.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|