crypticorn 2.11.6__py3-none-any.whl → 2.11.7__py3-none-any.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.
- crypticorn/common/errors.py +3 -3
- crypticorn/trade/client/__init__.py +27 -9
- crypticorn/trade/client/api/__init__.py +1 -0
- crypticorn/trade/client/api/admin_api.py +1455 -0
- crypticorn/trade/client/api/api_keys_api.py +60 -58
- crypticorn/trade/client/api/bots_api.py +289 -48
- crypticorn/trade/client/api/exchanges_api.py +474 -17
- crypticorn/trade/client/api/futures_trading_panel_api.py +1 -1
- crypticorn/trade/client/api/notifications_api.py +80 -96
- crypticorn/trade/client/api/orders_api.py +7 -7
- crypticorn/trade/client/api/status_api.py +5 -232
- crypticorn/trade/client/api/strategies_api.py +49 -48
- crypticorn/trade/client/api/trading_actions_api.py +42 -38
- crypticorn/trade/client/api_client.py +1 -1
- crypticorn/trade/client/configuration.py +1 -1
- crypticorn/trade/client/exceptions.py +1 -1
- crypticorn/trade/client/models/__init__.py +26 -9
- crypticorn/trade/client/models/api_error_identifier.py +116 -0
- crypticorn/trade/client/models/api_error_level.py +37 -0
- crypticorn/trade/client/models/api_error_type.py +37 -0
- crypticorn/trade/client/models/{bot_model.py → bot.py} +59 -60
- crypticorn/trade/client/models/bot_create.py +104 -0
- crypticorn/trade/client/models/bot_status.py +1 -1
- crypticorn/trade/client/models/bot_update.py +107 -0
- crypticorn/trade/client/models/exception_detail.py +8 -5
- crypticorn/trade/client/models/exchange.py +36 -0
- crypticorn/trade/client/models/exchange_key.py +111 -0
- crypticorn/trade/client/models/exchange_key_create.py +107 -0
- crypticorn/trade/client/models/{exchange_key_model.py → exchange_key_update.py} +12 -47
- crypticorn/trade/client/models/execution_ids.py +1 -1
- crypticorn/trade/client/models/futures_balance.py +1 -1
- crypticorn/trade/client/models/futures_trading_action.py +24 -16
- crypticorn/trade/client/models/{spot_trading_action.py → futures_trading_action_create.py} +24 -28
- crypticorn/trade/client/models/log_level.py +38 -0
- crypticorn/trade/client/models/margin_mode.py +1 -1
- crypticorn/trade/client/models/market_type.py +35 -0
- crypticorn/trade/client/models/{notification_model.py → notification.py} +35 -40
- crypticorn/trade/client/models/notification_create.py +114 -0
- crypticorn/trade/client/models/notification_update.py +96 -0
- crypticorn/trade/client/models/{order_model.py → order.py} +36 -31
- crypticorn/trade/client/models/order_status.py +1 -1
- crypticorn/trade/client/models/post_futures_action.py +1 -1
- crypticorn/trade/client/models/{action_model.py → spot_trading_action_create.py} +7 -65
- crypticorn/trade/client/models/{strategy_model_input.py → strategy.py} +25 -33
- crypticorn/trade/client/models/{strategy_model_output.py → strategy_create.py} +16 -39
- crypticorn/trade/client/models/strategy_exchange_info.py +4 -3
- crypticorn/trade/client/models/strategy_update.py +147 -0
- crypticorn/trade/client/models/tpsl.py +1 -1
- crypticorn/trade/client/models/trading_action_type.py +1 -1
- crypticorn/trade/client/rest.py +1 -1
- {crypticorn-2.11.6.dist-info → crypticorn-2.11.7.dist-info}/METADATA +1 -1
- {crypticorn-2.11.6.dist-info → crypticorn-2.11.7.dist-info}/RECORD +56 -42
- {crypticorn-2.11.6.dist-info → crypticorn-2.11.7.dist-info}/WHEEL +0 -0
- {crypticorn-2.11.6.dist-info → crypticorn-2.11.7.dist-info}/entry_points.txt +0 -0
- {crypticorn-2.11.6.dist-info → crypticorn-2.11.7.dist-info}/licenses/LICENSE +0 -0
- {crypticorn-2.11.6.dist-info → crypticorn-2.11.7.dist-info}/top_level.txt +0 -0
@@ -70,7 +70,7 @@ crypticorn/common/ansi_colors.py,sha256=-tMlUTE8NI7TPv7uj0kGRe-SI2hGaUNPKBFI_dfi
|
|
70
70
|
crypticorn/common/auth.py,sha256=HxiAEej315qQGbX0p8WmQI50blUTOWsMWpCtguMx-A4,8786
|
71
71
|
crypticorn/common/decorators.py,sha256=t5Y3vSJ-gt0n2vOYYjYN0dtzNXvZxrJs2SEItpzG8oo,1127
|
72
72
|
crypticorn/common/enums.py,sha256=YE7ObydyWAKO8MOSQBwk9M1PzzaPvlnxc6Dbpu78QMk,787
|
73
|
-
crypticorn/common/errors.py,sha256=
|
73
|
+
crypticorn/common/errors.py,sha256=UOr92gvLZOkhJRmwriV5TEBkYWQLW6ZcXC2sIeegBQE,28407
|
74
74
|
crypticorn/common/exceptions.py,sha256=31WcS1OEcGBAMc3FnPrtb6jFbh6Ni1v9Kciz7Av4y84,6098
|
75
75
|
crypticorn/common/logging.py,sha256=3ZTFB9j8Mqy_AlNYABUFQ_134OH0YtophJkP4_GDJ9w,4408
|
76
76
|
crypticorn/common/middleware.py,sha256=O7XiXPimNYUhF9QTv6yFUTVlb91-SK-3CfTrWMNP6Ck,1011
|
@@ -224,46 +224,60 @@ crypticorn/pay/client/models/response_getuptime.py,sha256=2q_8MrnJxrIVkfl6dOP3aY
|
|
224
224
|
crypticorn/pay/client/models/scope.py,sha256=YAgY33KvNjgIyjse2bezwatc2VrMwBHYjf8oCWR1dnU,2419
|
225
225
|
crypticorn/trade/__init__.py,sha256=QzScH9n-ly3QSaBSpPP7EqYwhdzDqYCZJs0-AhEhrsY,84
|
226
226
|
crypticorn/trade/main.py,sha256=h-lh8ESY0E5lKB5bg-D41TPxiNND8g4pFAd7updpd0Y,1074
|
227
|
-
crypticorn/trade/client/__init__.py,sha256
|
228
|
-
crypticorn/trade/client/api_client.py,sha256=
|
227
|
+
crypticorn/trade/client/__init__.py,sha256=Y0VHAIUGvjZR2UNFaAJT9_ciXyQlcVuF2d04cufFkEI,4028
|
228
|
+
crypticorn/trade/client/api_client.py,sha256=jcNo7CbwCmLd1whXXVnkH378MWnw_wlKzJ07L4RpCog,26966
|
229
229
|
crypticorn/trade/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
230
|
-
crypticorn/trade/client/configuration.py,sha256=
|
231
|
-
crypticorn/trade/client/exceptions.py,sha256=
|
230
|
+
crypticorn/trade/client/configuration.py,sha256=n_ENslVAtUf3FN7XiNYBHFdeg-qhia8wSzWhBkMN3p0,19198
|
231
|
+
crypticorn/trade/client/exceptions.py,sha256=SpFrOXW6rxrh-VqnH7rt7uBrJCKdCgR8YwkeaAjVXAM,6465
|
232
232
|
crypticorn/trade/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
233
|
-
crypticorn/trade/client/rest.py,sha256=
|
234
|
-
crypticorn/trade/client/api/__init__.py,sha256=
|
235
|
-
crypticorn/trade/client/api/
|
236
|
-
crypticorn/trade/client/api/
|
237
|
-
crypticorn/trade/client/api/
|
238
|
-
crypticorn/trade/client/api/
|
239
|
-
crypticorn/trade/client/api/
|
240
|
-
crypticorn/trade/client/api/
|
241
|
-
crypticorn/trade/client/api/
|
242
|
-
crypticorn/trade/client/api/
|
243
|
-
crypticorn/trade/client/api/
|
244
|
-
crypticorn/trade/client/
|
245
|
-
crypticorn/trade/client/models/
|
246
|
-
crypticorn/trade/client/models/
|
247
|
-
crypticorn/trade/client/models/
|
248
|
-
crypticorn/trade/client/models/
|
249
|
-
crypticorn/trade/client/models/
|
250
|
-
crypticorn/trade/client/models/
|
251
|
-
crypticorn/trade/client/models/
|
252
|
-
crypticorn/trade/client/models/
|
253
|
-
crypticorn/trade/client/models/
|
254
|
-
crypticorn/trade/client/models/
|
255
|
-
crypticorn/trade/client/models/
|
256
|
-
crypticorn/trade/client/models/
|
257
|
-
crypticorn/trade/client/models/
|
258
|
-
crypticorn/trade/client/models/
|
259
|
-
crypticorn/trade/client/models/
|
260
|
-
crypticorn/trade/client/models/
|
261
|
-
crypticorn/trade/client/models/
|
262
|
-
crypticorn/trade/client/models/
|
263
|
-
crypticorn/trade/client/models/
|
264
|
-
crypticorn
|
265
|
-
crypticorn
|
266
|
-
crypticorn
|
267
|
-
crypticorn
|
268
|
-
crypticorn
|
269
|
-
crypticorn
|
233
|
+
crypticorn/trade/client/rest.py,sha256=7vR8Z4wHrU1uGZyW1B6j96Qo5PECAfMl0-d-wxl6S0A,7067
|
234
|
+
crypticorn/trade/client/api/__init__.py,sha256=PzT1LP1-ner5PA-f_n5v97ifkP05Yh-k-ReOI9T1j-o,727
|
235
|
+
crypticorn/trade/client/api/admin_api.py,sha256=x3rSuXi68grjnBZ8ro5-7wjnkLR20qtqf9zmN3KuJcg,59879
|
236
|
+
crypticorn/trade/client/api/api_keys_api.py,sha256=qfauZXQySnqnah6mvZmTk5xLGk9Axsjeq_15eR4n9Dc,50970
|
237
|
+
crypticorn/trade/client/api/bots_api.py,sha256=Ub6SVM6PgA0exB4eGVtipvm19epKNtIpxiepdCjztLU,50859
|
238
|
+
crypticorn/trade/client/api/exchanges_api.py,sha256=PVTRapNFD-tOVJmSaC_X_8NbWMxM97YDB77IljKdCkw,29007
|
239
|
+
crypticorn/trade/client/api/futures_trading_panel_api.py,sha256=L4wVotLLu4p-44nEInIgM79I40xeObmn3hN1zYPiNWM,50071
|
240
|
+
crypticorn/trade/client/api/notifications_api.py,sha256=QDxDPmUq5wudlWZBCXFVcVS2ua0wA-k7qZQjJiUxiLQ,61504
|
241
|
+
crypticorn/trade/client/api/orders_api.py,sha256=AtDyddOSCp7Y974F45niIaql9w70KVi-7kTV7ZZEOM8,11065
|
242
|
+
crypticorn/trade/client/api/status_api.py,sha256=YtSZh7xuOl_vq9xfPqdnfuOEA9EpftOqCR7H7yWVAcI,19671
|
243
|
+
crypticorn/trade/client/api/strategies_api.py,sha256=waLUwLDPJopNH5jyv9g7MdneZZcqT3wz49XxmRIw-dY,41728
|
244
|
+
crypticorn/trade/client/api/trading_actions_api.py,sha256=KLJ7rZf8jiOh-G9wLJ2o97PWyYYDAj-3eSF87s4M1E0,32475
|
245
|
+
crypticorn/trade/client/models/__init__.py,sha256=T3rP5b5DS5tiW-cgTQuHMQ8L_-OrrTR8vnB8cwON4io,2723
|
246
|
+
crypticorn/trade/client/models/api_error_identifier.py,sha256=IBTyFvwxP48e0kZUgOOvGjZhuL9p2UQaqvzWja94GeM,5050
|
247
|
+
crypticorn/trade/client/models/api_error_level.py,sha256=8Sau6q3K29fg-EIGnex0yrw7gXJZLmyGTicYIXcehmY,816
|
248
|
+
crypticorn/trade/client/models/api_error_type.py,sha256=34NBgCP296pQx8doVpeqlhopPfBfRH1I-135YVtN19Y,855
|
249
|
+
crypticorn/trade/client/models/bot.py,sha256=UhpD-sRc4AZvnqqlVBfY9_P4zCCN2qL2jPocH1jYpYU,5513
|
250
|
+
crypticorn/trade/client/models/bot_create.py,sha256=tMko-M8c1iTlbxP8LcCALr1Ep2TMwgS0e9aZlrtQdX4,3271
|
251
|
+
crypticorn/trade/client/models/bot_status.py,sha256=Yga6SVNHBOcJhBENCWi7I12aSBhMDPI5uQrTPBReOQw,806
|
252
|
+
crypticorn/trade/client/models/bot_update.py,sha256=ptZquK4D7eUkfBLqZK5F2uJt-5am54E8KVJ7xu9JAfE,3458
|
253
|
+
crypticorn/trade/client/models/exception_detail.py,sha256=mW4Zxb1KtRMboZDupnhGpkiYHi1e2JE_j3qewgTwfbc,3891
|
254
|
+
crypticorn/trade/client/models/exchange.py,sha256=dGaPReYJA4trppExGlKrYxmBBqJKuxYSSK37p0e5LXI,802
|
255
|
+
crypticorn/trade/client/models/exchange_key.py,sha256=cDPYE8N736Eges65jAqDEPjUNX3l2Nmfhy-Dq-1uSME,3527
|
256
|
+
crypticorn/trade/client/models/exchange_key_create.py,sha256=n6yiomatf9FGB5GQpB2gVhWVmTzd7Md3rEFM2gPB2Mc,3418
|
257
|
+
crypticorn/trade/client/models/exchange_key_update.py,sha256=6rBpzKIAzRq7Wg_P-nNSOJKoljTm3Lq3B8cVkZtM50E,3725
|
258
|
+
crypticorn/trade/client/models/execution_ids.py,sha256=0MHzL43PX-aMjKxCkcLTPbszG5q0KruZPwlColEZW58,2963
|
259
|
+
crypticorn/trade/client/models/futures_balance.py,sha256=BePXd2bngkHjcKtZButMFcsU4RS7MU1QkvzF46q8X6U,4191
|
260
|
+
crypticorn/trade/client/models/futures_trading_action.py,sha256=VsSGZ1EyAm4h0OMttPFCQWObLk65n77-xlbGohHm5rE,9767
|
261
|
+
crypticorn/trade/client/models/futures_trading_action_create.py,sha256=gAnmn8VIFV2QUJJnpcUuZS5kzHZH7y0Ll4NYCsgK82Q,8527
|
262
|
+
crypticorn/trade/client/models/log_level.py,sha256=Fv2WlajyWZTiXBRNyFQ1x0xqh5nrzKL_0k7fyt92bHA,813
|
263
|
+
crypticorn/trade/client/models/margin_mode.py,sha256=kG1ElFka5OYQI6YQOH1JhGY3qo-ZQhdMTqIYDpqPlgs,777
|
264
|
+
crypticorn/trade/client/models/market_type.py,sha256=OkEE5lAPw2FAudw_98BLcyglEXQhb2uhFeP82W7WFPM,755
|
265
|
+
crypticorn/trade/client/models/notification.py,sha256=Xl3hsWJP24-hJv-3QAZFyN_BBI9PNyp73Y_wqcmUyYs,4416
|
266
|
+
crypticorn/trade/client/models/notification_create.py,sha256=iXkqvDhFYGoKW4yCWkJP7_5q-DPpJpE0FqWKqK21CE8,3749
|
267
|
+
crypticorn/trade/client/models/notification_update.py,sha256=a1tpTjKWA2kOqBJxxeyheMdIOZ_2NtAYu9X7R5h1M3c,3034
|
268
|
+
crypticorn/trade/client/models/order.py,sha256=FbhMZWKs_Sbe0JvuweUXKD-fWn6aboTm8deQvXf0hPg,12254
|
269
|
+
crypticorn/trade/client/models/order_status.py,sha256=dQkbXtPSW4bVGQOVL0M9-Q_fMpAUa4v3uwuuUwXNcnY,852
|
270
|
+
crypticorn/trade/client/models/post_futures_action.py,sha256=KBI3lPayQQNfQP8Attow9tkuo9zimJk19cKQQb9JK-w,3123
|
271
|
+
crypticorn/trade/client/models/spot_trading_action_create.py,sha256=NGtT-hpfhYYizIjGZQ0X67IxP9l99aiCjvxu1oDNnxA,7668
|
272
|
+
crypticorn/trade/client/models/strategy.py,sha256=b-Rjq3TKYkWg5jutoyiOSJaDJOgkFbOLlheFHvS2Yns,5381
|
273
|
+
crypticorn/trade/client/models/strategy_create.py,sha256=WolaGnOVH9TCIUMYZ3GCUpl93uQI2eZazI1Qi9hTNgM,4859
|
274
|
+
crypticorn/trade/client/models/strategy_exchange_info.py,sha256=MhPqBXHNM-jM0JPYHuhzfTKTzEaaNBGMwK9FW2Kq_OI,2841
|
275
|
+
crypticorn/trade/client/models/strategy_update.py,sha256=f7UsKSlNardj5h6uqHYbacjWWQscXkFDqcLOoefa28M,5048
|
276
|
+
crypticorn/trade/client/models/tpsl.py,sha256=vUWMI9T69kCgiN0aQobiIkGFb3MYdMfkhPUjQuCLeYE,4405
|
277
|
+
crypticorn/trade/client/models/trading_action_type.py,sha256=BysUEOl85zs79EA2zOcDN1EExcpQdABaJ4Jz08_z8VU,857
|
278
|
+
crypticorn-2.11.7.dist-info/licenses/LICENSE,sha256=HonAVvzFXkP2C1d7D3ByIKPwjGH8NcHTAQvKH7uvOHQ,1856
|
279
|
+
crypticorn-2.11.7.dist-info/METADATA,sha256=voeipB5pJZ3f-53FEx1kCJe1waRtJCh2Kf_cPcrijyg,8640
|
280
|
+
crypticorn-2.11.7.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
281
|
+
crypticorn-2.11.7.dist-info/entry_points.txt,sha256=d_xHsGvUTebPveVUK0SrpDFQ5ZRSjlI7lNCc11sn2PM,59
|
282
|
+
crypticorn-2.11.7.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
|
283
|
+
crypticorn-2.11.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|