ccxt 4.4.40__py2.py3-none-any.whl → 4.4.42__py2.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.
- ccxt/__init__.py +1 -1
- ccxt/abstract/binance.py +3 -0
- ccxt/abstract/binancecoinm.py +3 -0
- ccxt/abstract/binanceus.py +3 -0
- ccxt/abstract/binanceusdm.py +3 -0
- ccxt/abstract/bitmart.py +2 -0
- ccxt/abstract/okx.py +5 -0
- ccxt/ace.py +1 -1
- ccxt/alpaca.py +0 -1
- ccxt/ascendex.py +0 -1
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/ace.py +1 -1
- ccxt/async_support/alpaca.py +0 -1
- ccxt/async_support/ascendex.py +0 -1
- ccxt/async_support/base/exchange.py +24 -17
- ccxt/async_support/bigone.py +0 -1
- ccxt/async_support/binance.py +27 -24
- ccxt/async_support/bingx.py +5 -1
- ccxt/async_support/bitfinex.py +123 -1
- ccxt/async_support/bitget.py +1 -0
- ccxt/async_support/bitmart.py +243 -2
- ccxt/async_support/blofin.py +16 -7
- ccxt/async_support/bybit.py +8 -8
- ccxt/async_support/cex.py +1 -1
- ccxt/async_support/coinbase.py +8 -9
- ccxt/async_support/coinbaseexchange.py +5 -6
- ccxt/async_support/coinbaseinternational.py +7 -8
- ccxt/async_support/coincatch.py +0 -1
- ccxt/async_support/coincheck.py +0 -1
- ccxt/async_support/coinex.py +91 -6
- ccxt/async_support/coinlist.py +3 -4
- ccxt/async_support/coinmate.py +1 -3
- ccxt/async_support/coinmetro.py +4 -5
- ccxt/async_support/coinone.py +0 -1
- ccxt/async_support/coinsph.py +7 -8
- ccxt/async_support/cryptocom.py +3 -0
- ccxt/async_support/currencycom.py +3 -4
- ccxt/async_support/defx.py +6 -7
- ccxt/async_support/deribit.py +1 -3
- ccxt/async_support/digifinex.py +0 -1
- ccxt/async_support/ellipx.py +0 -2
- ccxt/async_support/exmo.py +61 -6
- ccxt/async_support/gate.py +2 -3
- ccxt/async_support/gemini.py +4 -5
- ccxt/async_support/hashkey.py +79 -67
- ccxt/async_support/hitbtc.py +47 -5
- ccxt/async_support/hollaex.py +4 -6
- ccxt/async_support/htx.py +2 -4
- ccxt/async_support/huobijp.py +0 -1
- ccxt/async_support/hyperliquid.py +60 -1
- ccxt/async_support/idex.py +8 -8
- ccxt/async_support/independentreserve.py +0 -1
- ccxt/async_support/indodax.py +0 -1
- ccxt/async_support/kraken.py +186 -28
- ccxt/async_support/krakenfutures.py +75 -3
- ccxt/async_support/kucoin.py +6 -4
- ccxt/async_support/kucoinfutures.py +10 -9
- ccxt/async_support/kuna.py +1 -3
- ccxt/async_support/latoken.py +1 -3
- ccxt/async_support/lbank.py +0 -1
- ccxt/async_support/luno.py +0 -1
- ccxt/async_support/lykke.py +0 -1
- ccxt/async_support/mercado.py +0 -1
- ccxt/async_support/mexc.py +6 -7
- ccxt/async_support/ndax.py +1 -1
- ccxt/async_support/novadax.py +4 -6
- ccxt/async_support/oceanex.py +0 -1
- ccxt/async_support/okcoin.py +1 -3
- ccxt/async_support/okx.py +7 -4
- ccxt/async_support/onetrading.py +1 -3
- ccxt/async_support/p2b.py +1 -1
- ccxt/async_support/paradex.py +5 -7
- ccxt/async_support/phemex.py +8 -10
- ccxt/async_support/poloniex.py +1 -3
- ccxt/async_support/poloniexfutures.py +6 -6
- ccxt/async_support/probit.py +0 -1
- ccxt/async_support/timex.py +0 -1
- ccxt/async_support/tokocrypto.py +11 -14
- ccxt/async_support/tradeogre.py +1 -1
- ccxt/async_support/upbit.py +0 -1
- ccxt/async_support/wavesexchange.py +4 -5
- ccxt/async_support/whitebit.py +8 -9
- ccxt/async_support/woo.py +98 -12
- ccxt/async_support/woofipro.py +96 -15
- ccxt/async_support/xt.py +6 -3
- ccxt/async_support/yobit.py +0 -1
- ccxt/async_support/zaif.py +0 -1
- ccxt/async_support/zonda.py +1 -2
- ccxt/base/exchange.py +39 -20
- ccxt/base/types.py +10 -0
- ccxt/bigone.py +0 -1
- ccxt/binance.py +27 -24
- ccxt/bingx.py +5 -1
- ccxt/bitfinex.py +123 -1
- ccxt/bitget.py +1 -0
- ccxt/bitmart.py +243 -2
- ccxt/blofin.py +16 -7
- ccxt/bybit.py +8 -8
- ccxt/cex.py +1 -1
- ccxt/coinbase.py +8 -9
- ccxt/coinbaseexchange.py +5 -6
- ccxt/coinbaseinternational.py +7 -8
- ccxt/coincatch.py +0 -1
- ccxt/coincheck.py +0 -1
- ccxt/coinex.py +91 -6
- ccxt/coinlist.py +3 -4
- ccxt/coinmate.py +1 -3
- ccxt/coinmetro.py +4 -5
- ccxt/coinone.py +0 -1
- ccxt/coinsph.py +7 -8
- ccxt/cryptocom.py +3 -0
- ccxt/currencycom.py +3 -4
- ccxt/defx.py +6 -7
- ccxt/deribit.py +1 -3
- ccxt/digifinex.py +0 -1
- ccxt/ellipx.py +0 -2
- ccxt/exmo.py +61 -6
- ccxt/gate.py +2 -3
- ccxt/gemini.py +4 -5
- ccxt/hashkey.py +79 -67
- ccxt/hitbtc.py +47 -5
- ccxt/hollaex.py +4 -6
- ccxt/htx.py +2 -4
- ccxt/huobijp.py +0 -1
- ccxt/hyperliquid.py +60 -1
- ccxt/idex.py +8 -8
- ccxt/independentreserve.py +0 -1
- ccxt/indodax.py +0 -1
- ccxt/kraken.py +186 -28
- ccxt/krakenfutures.py +75 -3
- ccxt/kucoin.py +6 -4
- ccxt/kucoinfutures.py +10 -9
- ccxt/kuna.py +1 -3
- ccxt/latoken.py +1 -3
- ccxt/lbank.py +0 -1
- ccxt/luno.py +0 -1
- ccxt/lykke.py +0 -1
- ccxt/mercado.py +0 -1
- ccxt/mexc.py +6 -7
- ccxt/ndax.py +1 -1
- ccxt/novadax.py +4 -6
- ccxt/oceanex.py +0 -1
- ccxt/okcoin.py +1 -3
- ccxt/okx.py +7 -4
- ccxt/onetrading.py +1 -3
- ccxt/p2b.py +1 -1
- ccxt/paradex.py +5 -7
- ccxt/phemex.py +8 -10
- ccxt/poloniex.py +1 -3
- ccxt/poloniexfutures.py +6 -6
- ccxt/pro/__init__.py +1 -1
- ccxt/probit.py +0 -1
- ccxt/timex.py +0 -1
- ccxt/tokocrypto.py +11 -14
- ccxt/tradeogre.py +1 -1
- ccxt/upbit.py +0 -1
- ccxt/wavesexchange.py +4 -5
- ccxt/whitebit.py +8 -9
- ccxt/woo.py +98 -12
- ccxt/woofipro.py +96 -15
- ccxt/xt.py +6 -3
- ccxt/yobit.py +0 -1
- ccxt/zaif.py +0 -1
- ccxt/zonda.py +1 -2
- {ccxt-4.4.40.dist-info → ccxt-4.4.42.dist-info}/METADATA +5 -5
- {ccxt-4.4.40.dist-info → ccxt-4.4.42.dist-info}/RECORD +169 -173
- ccxt/bitbay.py +0 -17
- ccxt/bitfinex2.py +0 -3624
- ccxt/hitbtc3.py +0 -16
- ccxt/pro/bitfinex2.py +0 -1086
- {ccxt-4.4.40.dist-info → ccxt-4.4.42.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.4.40.dist-info → ccxt-4.4.42.dist-info}/WHEEL +0 -0
- {ccxt-4.4.40.dist-info → ccxt-4.4.42.dist-info}/top_level.txt +0 -0
ccxt/async_support/kraken.py
CHANGED
@@ -445,6 +445,67 @@ class kraken(Exchange, ImplicitAPI):
|
|
445
445
|
'Celestia': 'TIA',
|
446
446
|
},
|
447
447
|
},
|
448
|
+
'features': {
|
449
|
+
'spot': {
|
450
|
+
'sandbox': False,
|
451
|
+
'createOrder': {
|
452
|
+
'marginMode': False,
|
453
|
+
'triggerPrice': False, # todo
|
454
|
+
'triggerPriceType': None,
|
455
|
+
'triggerDirection': False,
|
456
|
+
'stopLossPrice': True,
|
457
|
+
'takeProfitPrice': True,
|
458
|
+
'attachedStopLossTakeProfit': None,
|
459
|
+
'timeInForce': {
|
460
|
+
'IOC': True,
|
461
|
+
'FOK': True,
|
462
|
+
'PO': True,
|
463
|
+
'GTD': False,
|
464
|
+
},
|
465
|
+
'hedged': False,
|
466
|
+
'trailing': True,
|
467
|
+
},
|
468
|
+
'createOrders': None,
|
469
|
+
'fetchMyTrades': {
|
470
|
+
'marginMode': False,
|
471
|
+
'limit': None,
|
472
|
+
'daysBack': None,
|
473
|
+
'untilDays': None,
|
474
|
+
},
|
475
|
+
'fetchOrder': {
|
476
|
+
'marginMode': False,
|
477
|
+
'trigger': False,
|
478
|
+
'trailing': False,
|
479
|
+
},
|
480
|
+
'fetchOpenOrders': {
|
481
|
+
'marginMode': False,
|
482
|
+
'limit': None,
|
483
|
+
'trigger': False,
|
484
|
+
'trailing': False,
|
485
|
+
},
|
486
|
+
'fetchOrders': None,
|
487
|
+
'fetchClosedOrders': {
|
488
|
+
'marginMode': False,
|
489
|
+
'limit': None,
|
490
|
+
'daysBackClosed': None,
|
491
|
+
'daysBackCanceled': None,
|
492
|
+
'untilDays': 100000,
|
493
|
+
'trigger': False,
|
494
|
+
'trailing': False,
|
495
|
+
},
|
496
|
+
'fetchOHLCV': {
|
497
|
+
'limit': 720,
|
498
|
+
},
|
499
|
+
},
|
500
|
+
'swap': {
|
501
|
+
'linear': None,
|
502
|
+
'inverse': None,
|
503
|
+
},
|
504
|
+
'future': {
|
505
|
+
'linear': None,
|
506
|
+
'inverse': None,
|
507
|
+
},
|
508
|
+
},
|
448
509
|
'precisionMode': TICK_SIZE,
|
449
510
|
'exceptions': {
|
450
511
|
'exact': {
|
@@ -1008,7 +1069,7 @@ class kraken(Exchange, ImplicitAPI):
|
|
1008
1069
|
"""
|
1009
1070
|
fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
1010
1071
|
|
1011
|
-
https://docs.kraken.com/rest
|
1072
|
+
https://docs.kraken.com/api/docs/rest-api/get-ohlc-data
|
1012
1073
|
|
1013
1074
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
1014
1075
|
:param str timeframe: the length of time each candle represents
|
@@ -1621,6 +1682,37 @@ class kraken(Exchange, ImplicitAPI):
|
|
1621
1682
|
# }
|
1622
1683
|
# }
|
1623
1684
|
#
|
1685
|
+
# fetchOpenOrders
|
1686
|
+
#
|
1687
|
+
# {
|
1688
|
+
# "refid": null,
|
1689
|
+
# "userref": null,
|
1690
|
+
# "cl_ord_id": "1234",
|
1691
|
+
# "status": "open",
|
1692
|
+
# "opentm": 1733815269.370054,
|
1693
|
+
# "starttm": 0,
|
1694
|
+
# "expiretm": 0,
|
1695
|
+
# "descr": {
|
1696
|
+
# "pair": "XBTUSD",
|
1697
|
+
# "type": "buy",
|
1698
|
+
# "ordertype": "limit",
|
1699
|
+
# "price": "70000.0",
|
1700
|
+
# "price2": "0",
|
1701
|
+
# "leverage": "none",
|
1702
|
+
# "order": "buy 0.00010000 XBTUSD @ limit 70000.0",
|
1703
|
+
# "close": ""
|
1704
|
+
# },
|
1705
|
+
# "vol": "0.00010000",
|
1706
|
+
# "vol_exec": "0.00000000",
|
1707
|
+
# "cost": "0.00000",
|
1708
|
+
# "fee": "0.00000",
|
1709
|
+
# "price": "0.00000",
|
1710
|
+
# "stopprice": "0.00000",
|
1711
|
+
# "limitprice": "0.00000",
|
1712
|
+
# "misc": "",
|
1713
|
+
# "oflags": "fciq"
|
1714
|
+
# }
|
1715
|
+
#
|
1624
1716
|
description = self.safe_dict(order, 'descr', {})
|
1625
1717
|
orderDescriptionObj = self.safe_dict(order, 'descr') # can be null
|
1626
1718
|
orderDescription = None
|
@@ -1694,7 +1786,8 @@ class kraken(Exchange, ImplicitAPI):
|
|
1694
1786
|
if (id is None) or (id.startswith('[')):
|
1695
1787
|
txid = self.safe_list(order, 'txid')
|
1696
1788
|
id = self.safe_string(txid, 0)
|
1697
|
-
|
1789
|
+
userref = self.safe_string(order, 'userref')
|
1790
|
+
clientOrderId = self.safe_string(order, 'cl_ord_id', userref)
|
1698
1791
|
rawTrades = self.safe_value(order, 'trades', [])
|
1699
1792
|
trades = []
|
1700
1793
|
for i in range(0, len(rawTrades)):
|
@@ -1743,7 +1836,6 @@ class kraken(Exchange, ImplicitAPI):
|
|
1743
1836
|
'postOnly': isPostOnly,
|
1744
1837
|
'side': side,
|
1745
1838
|
'price': price,
|
1746
|
-
'stopPrice': triggerPrice,
|
1747
1839
|
'triggerPrice': triggerPrice,
|
1748
1840
|
'takeProfitPrice': takeProfitPrice,
|
1749
1841
|
'stopLossPrice': stopLossPrice,
|
@@ -1888,10 +1980,10 @@ class kraken(Exchange, ImplicitAPI):
|
|
1888
1980
|
request: dict = {
|
1889
1981
|
'txid': id,
|
1890
1982
|
}
|
1891
|
-
clientOrderId = self.
|
1983
|
+
clientOrderId = self.safe_string_2(params, 'clientOrderId', 'cl_ord_id')
|
1892
1984
|
if clientOrderId is not None:
|
1893
1985
|
request['cl_ord_id'] = clientOrderId
|
1894
|
-
params = self.omit(params, 'clientOrderId')
|
1986
|
+
params = self.omit(params, ['clientOrderId', 'cl_ord_id'])
|
1895
1987
|
request = self.omit(request, 'txid')
|
1896
1988
|
isMarket = (type == 'market')
|
1897
1989
|
postOnly = None
|
@@ -2091,7 +2183,7 @@ class kraken(Exchange, ImplicitAPI):
|
|
2091
2183
|
"""
|
2092
2184
|
fetch all trades made by the user
|
2093
2185
|
|
2094
|
-
https://docs.kraken.com/rest
|
2186
|
+
https://docs.kraken.com/api/docs/rest-api/get-trade-history
|
2095
2187
|
|
2096
2188
|
:param str symbol: unified market symbol
|
2097
2189
|
:param int [since]: the earliest time in ms to fetch trades for
|
@@ -2158,20 +2250,27 @@ class kraken(Exchange, ImplicitAPI):
|
|
2158
2250
|
"""
|
2159
2251
|
cancels an open order
|
2160
2252
|
|
2161
|
-
https://docs.kraken.com/rest
|
2253
|
+
https://docs.kraken.com/api/docs/rest-api/cancel-order
|
2162
2254
|
|
2163
2255
|
:param str id: order id
|
2164
|
-
:param str symbol: unified symbol of the market the order was made in
|
2256
|
+
:param str [symbol]: unified symbol of the market the order was made in
|
2165
2257
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
2166
|
-
:
|
2258
|
+
:param str [params.clientOrderId]: the orders client order id
|
2259
|
+
:param int [params.userref]: the orders user reference id
|
2260
|
+
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
2167
2261
|
"""
|
2168
2262
|
await self.load_markets()
|
2169
2263
|
response = None
|
2170
|
-
|
2264
|
+
requestId = self.safe_value(params, 'userref', id) # string or integer
|
2265
|
+
params = self.omit(params, 'userref')
|
2171
2266
|
request: dict = {
|
2172
|
-
'txid':
|
2267
|
+
'txid': requestId, # order id or userref
|
2173
2268
|
}
|
2174
|
-
|
2269
|
+
clientOrderId = self.safe_string_2(params, 'clientOrderId', 'cl_ord_id')
|
2270
|
+
if clientOrderId is not None:
|
2271
|
+
request['cl_ord_id'] = clientOrderId
|
2272
|
+
params = self.omit(params, ['clientOrderId', 'cl_ord_id'])
|
2273
|
+
request = self.omit(request, 'txid')
|
2175
2274
|
try:
|
2176
2275
|
response = await self.privatePostCancelOrder(self.extend(request, params))
|
2177
2276
|
#
|
@@ -2278,55 +2377,108 @@ class kraken(Exchange, ImplicitAPI):
|
|
2278
2377
|
"""
|
2279
2378
|
fetch all unfilled currently open orders
|
2280
2379
|
|
2281
|
-
https://docs.kraken.com/rest
|
2380
|
+
https://docs.kraken.com/api/docs/rest-api/get-open-orders
|
2282
2381
|
|
2283
|
-
:param str symbol: unified market symbol
|
2382
|
+
:param str [symbol]: unified market symbol
|
2284
2383
|
:param int [since]: the earliest time in ms to fetch open orders for
|
2285
2384
|
:param int [limit]: the maximum number of open orders structures to retrieve
|
2286
2385
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
2386
|
+
:param str [params.clientOrderId]: the orders client order id
|
2387
|
+
:param int [params.userref]: the orders user reference id
|
2287
2388
|
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
2288
2389
|
"""
|
2289
2390
|
await self.load_markets()
|
2290
2391
|
request: dict = {}
|
2291
2392
|
if since is not None:
|
2292
2393
|
request['start'] = self.parse_to_int(since / 1000)
|
2293
|
-
|
2294
|
-
|
2394
|
+
userref = self.safe_integer(params, 'userref')
|
2395
|
+
if userref is not None:
|
2396
|
+
request['userref'] = userref
|
2397
|
+
params = self.omit(params, 'userref')
|
2398
|
+
clientOrderId = self.safe_string(params, 'clientOrderId')
|
2295
2399
|
if clientOrderId is not None:
|
2296
|
-
request['
|
2297
|
-
|
2298
|
-
response = await self.privatePostOpenOrders(self.extend(request,
|
2400
|
+
request['cl_ord_id'] = clientOrderId
|
2401
|
+
params = self.omit(params, 'clientOrderId')
|
2402
|
+
response = await self.privatePostOpenOrders(self.extend(request, params))
|
2403
|
+
#
|
2404
|
+
# {
|
2405
|
+
# "error": [],
|
2406
|
+
# "result": {
|
2407
|
+
# "open": {
|
2408
|
+
# "O45M52-BFD5S-YXKQOU": {
|
2409
|
+
# "refid": null,
|
2410
|
+
# "userref": null,
|
2411
|
+
# "cl_ord_id": "1234",
|
2412
|
+
# "status": "open",
|
2413
|
+
# "opentm": 1733815269.370054,
|
2414
|
+
# "starttm": 0,
|
2415
|
+
# "expiretm": 0,
|
2416
|
+
# "descr": {
|
2417
|
+
# "pair": "XBTUSD",
|
2418
|
+
# "type": "buy",
|
2419
|
+
# "ordertype": "limit",
|
2420
|
+
# "price": "70000.0",
|
2421
|
+
# "price2": "0",
|
2422
|
+
# "leverage": "none",
|
2423
|
+
# "order": "buy 0.00010000 XBTUSD @ limit 70000.0",
|
2424
|
+
# "close": ""
|
2425
|
+
# },
|
2426
|
+
# "vol": "0.00010000",
|
2427
|
+
# "vol_exec": "0.00000000",
|
2428
|
+
# "cost": "0.00000",
|
2429
|
+
# "fee": "0.00000",
|
2430
|
+
# "price": "0.00000",
|
2431
|
+
# "stopprice": "0.00000",
|
2432
|
+
# "limitprice": "0.00000",
|
2433
|
+
# "misc": "",
|
2434
|
+
# "oflags": "fciq"
|
2435
|
+
# }
|
2436
|
+
# }
|
2437
|
+
# }
|
2438
|
+
# }
|
2439
|
+
#
|
2299
2440
|
market = None
|
2300
2441
|
if symbol is not None:
|
2301
2442
|
market = self.market(symbol)
|
2302
2443
|
result = self.safe_dict(response, 'result', {})
|
2303
|
-
|
2444
|
+
open = self.safe_dict(result, 'open', {})
|
2445
|
+
orders = []
|
2446
|
+
orderIds = list(open.keys())
|
2447
|
+
for i in range(0, len(orderIds)):
|
2448
|
+
id = orderIds[i]
|
2449
|
+
item = open[id]
|
2450
|
+
orders.append(self.extend({'id': id}, item))
|
2304
2451
|
return self.parse_orders(orders, market, since, limit)
|
2305
2452
|
|
2306
2453
|
async def fetch_closed_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
2307
2454
|
"""
|
2308
2455
|
fetches information on multiple closed orders made by the user
|
2309
2456
|
|
2310
|
-
https://docs.kraken.com/rest
|
2457
|
+
https://docs.kraken.com/api/docs/rest-api/get-closed-orders
|
2311
2458
|
|
2312
|
-
:param str symbol: unified market symbol of the market orders were made in
|
2459
|
+
:param str [symbol]: unified market symbol of the market orders were made in
|
2313
2460
|
:param int [since]: the earliest time in ms to fetch orders for
|
2314
2461
|
:param int [limit]: the maximum number of order structures to retrieve
|
2315
2462
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
2316
2463
|
:param int [params.until]: timestamp in ms of the latest entry
|
2464
|
+
:param str [params.clientOrderId]: the orders client order id
|
2465
|
+
:param int [params.userref]: the orders user reference id
|
2317
2466
|
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
2318
2467
|
"""
|
2319
2468
|
await self.load_markets()
|
2320
2469
|
request: dict = {}
|
2321
2470
|
if since is not None:
|
2322
2471
|
request['start'] = self.parse_to_int(since / 1000)
|
2323
|
-
|
2324
|
-
|
2472
|
+
userref = self.safe_integer(params, 'userref')
|
2473
|
+
if userref is not None:
|
2474
|
+
request['userref'] = userref
|
2475
|
+
params = self.omit(params, 'userref')
|
2476
|
+
clientOrderId = self.safe_string(params, 'clientOrderId')
|
2325
2477
|
if clientOrderId is not None:
|
2326
|
-
request['
|
2327
|
-
|
2478
|
+
request['cl_ord_id'] = clientOrderId
|
2479
|
+
params = self.omit(params, 'clientOrderId')
|
2328
2480
|
request, params = self.handle_until_option('end', request, params)
|
2329
|
-
response = await self.privatePostClosedOrders(self.extend(request,
|
2481
|
+
response = await self.privatePostClosedOrders(self.extend(request, params))
|
2330
2482
|
#
|
2331
2483
|
# {
|
2332
2484
|
# "error":[],
|
@@ -2370,7 +2522,13 @@ class kraken(Exchange, ImplicitAPI):
|
|
2370
2522
|
if symbol is not None:
|
2371
2523
|
market = self.market(symbol)
|
2372
2524
|
result = self.safe_dict(response, 'result', {})
|
2373
|
-
|
2525
|
+
closed = self.safe_dict(result, 'closed', {})
|
2526
|
+
orders = []
|
2527
|
+
orderIds = list(closed.keys())
|
2528
|
+
for i in range(0, len(orderIds)):
|
2529
|
+
id = orderIds[i]
|
2530
|
+
item = closed[id]
|
2531
|
+
orders.append(self.extend({'id': id}, item))
|
2374
2532
|
return self.parse_orders(orders, market, since, limit)
|
2375
2533
|
|
2376
2534
|
def parse_transaction_status(self, status: Str):
|
@@ -276,6 +276,78 @@ class krakenfutures(Exchange, ImplicitAPI):
|
|
276
276
|
'method': 'historyGetMarketSymbolExecutions', # historyGetMarketSymbolExecutions, publicGetHistory
|
277
277
|
},
|
278
278
|
},
|
279
|
+
'features': {
|
280
|
+
'default': {
|
281
|
+
'sandbox': True,
|
282
|
+
'createOrder': {
|
283
|
+
'marginMode': False,
|
284
|
+
'triggerPrice': True,
|
285
|
+
'triggerPriceType': {
|
286
|
+
'last': True,
|
287
|
+
'mark': True,
|
288
|
+
'index': True,
|
289
|
+
},
|
290
|
+
'triggerDirection': False,
|
291
|
+
'stopLossPrice': True,
|
292
|
+
'takeProfitPrice': True,
|
293
|
+
'attachedStopLossTakeProfit': None,
|
294
|
+
'timeInForce': {
|
295
|
+
'IOC': True,
|
296
|
+
'FOK': True,
|
297
|
+
'PO': True,
|
298
|
+
'GTD': False,
|
299
|
+
},
|
300
|
+
'hedged': False,
|
301
|
+
'trailing': False,
|
302
|
+
},
|
303
|
+
'createOrders': {
|
304
|
+
'max': 100,
|
305
|
+
},
|
306
|
+
'fetchMyTrades': {
|
307
|
+
'marginMode': False,
|
308
|
+
'limit': None,
|
309
|
+
'daysBack': None,
|
310
|
+
'untilDays': 100000,
|
311
|
+
},
|
312
|
+
'fetchOrder': None,
|
313
|
+
'fetchOpenOrders': {
|
314
|
+
'marginMode': False,
|
315
|
+
'limit': None,
|
316
|
+
'trigger': False,
|
317
|
+
'trailing': False,
|
318
|
+
},
|
319
|
+
'fetchOrders': None,
|
320
|
+
'fetchClosedOrders': {
|
321
|
+
'marginMode': False,
|
322
|
+
'limit': None,
|
323
|
+
'daysBackClosed': None,
|
324
|
+
'daysBackCanceled': None,
|
325
|
+
'untilDays': None,
|
326
|
+
'trigger': False,
|
327
|
+
'trailing': False,
|
328
|
+
},
|
329
|
+
'fetchOHLCV': {
|
330
|
+
'limit': 5000,
|
331
|
+
},
|
332
|
+
},
|
333
|
+
'spot': None,
|
334
|
+
'swap': {
|
335
|
+
'linear': {
|
336
|
+
'extends': 'default',
|
337
|
+
},
|
338
|
+
'inverse': {
|
339
|
+
'extends': 'default',
|
340
|
+
},
|
341
|
+
},
|
342
|
+
'future': {
|
343
|
+
'linear': {
|
344
|
+
'extends': 'default',
|
345
|
+
},
|
346
|
+
'inverse': {
|
347
|
+
'extends': 'default',
|
348
|
+
},
|
349
|
+
},
|
350
|
+
},
|
279
351
|
'timeframes': {
|
280
352
|
'1m': '1m',
|
281
353
|
'5m': '5m',
|
@@ -1011,7 +1083,7 @@ class krakenfutures(Exchange, ImplicitAPI):
|
|
1011
1083
|
"""
|
1012
1084
|
Create an order on the exchange
|
1013
1085
|
|
1014
|
-
https://docs.
|
1086
|
+
https://docs.kraken.com/api/docs/futures-api/trading/send-order
|
1015
1087
|
|
1016
1088
|
:param str symbol: unified market symbol
|
1017
1089
|
:param str type: 'limit' or 'market'
|
@@ -1071,7 +1143,7 @@ class krakenfutures(Exchange, ImplicitAPI):
|
|
1071
1143
|
"""
|
1072
1144
|
create a list of trade orders
|
1073
1145
|
|
1074
|
-
https://docs.
|
1146
|
+
https://docs.kraken.com/api/docs/futures-api/trading/send-batch-order
|
1075
1147
|
|
1076
1148
|
:param Array orders: list of orders to create, each object should contain the parameters required by createOrder, namely symbol, type, side, amount, price and params
|
1077
1149
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -1804,7 +1876,6 @@ class krakenfutures(Exchange, ImplicitAPI):
|
|
1804
1876
|
'reduceOnly': self.safe_bool_2(details, 'reduceOnly', 'reduce_only'),
|
1805
1877
|
'side': self.safe_string(details, 'side'),
|
1806
1878
|
'price': price,
|
1807
|
-
'stopPrice': self.safe_string(details, 'triggerPrice'),
|
1808
1879
|
'triggerPrice': self.safe_string(details, 'triggerPrice'),
|
1809
1880
|
'amount': amount,
|
1810
1881
|
'cost': cost,
|
@@ -1834,6 +1905,7 @@ class krakenfutures(Exchange, ImplicitAPI):
|
|
1834
1905
|
market = None
|
1835
1906
|
if symbol is not None:
|
1836
1907
|
market = self.market(symbol)
|
1908
|
+
# todo: lastFillTime: self.iso8601(end)
|
1837
1909
|
response = await self.privateGetFills(params)
|
1838
1910
|
#
|
1839
1911
|
# {
|
ccxt/async_support/kucoin.py
CHANGED
@@ -660,6 +660,8 @@ class kucoin(Exchange, ImplicitAPI):
|
|
660
660
|
'version': 'v1',
|
661
661
|
'symbolSeparator': '-',
|
662
662
|
'fetchMyTradesMethod': 'private_get_fills',
|
663
|
+
'timeDifference': 0, # the difference between system clock and Binance clock
|
664
|
+
'adjustForTimeDifference': False, # controls the adjustment logic upon instantiation
|
663
665
|
'fetchCurrencies': {
|
664
666
|
'webApiEnable': True, # fetches from WEB
|
665
667
|
'webApiRetries': 1,
|
@@ -1076,7 +1078,7 @@ class kucoin(Exchange, ImplicitAPI):
|
|
1076
1078
|
})
|
1077
1079
|
|
1078
1080
|
def nonce(self):
|
1079
|
-
return self.milliseconds()
|
1081
|
+
return self.milliseconds() - self.options['timeDifference']
|
1080
1082
|
|
1081
1083
|
async def fetch_time(self, params={}):
|
1082
1084
|
"""
|
@@ -1313,6 +1315,8 @@ class kucoin(Exchange, ImplicitAPI):
|
|
1313
1315
|
'created': None,
|
1314
1316
|
'info': market,
|
1315
1317
|
})
|
1318
|
+
if self.options['adjustForTimeDifference']:
|
1319
|
+
await self.load_time_difference()
|
1316
1320
|
return result
|
1317
1321
|
|
1318
1322
|
async def load_migration_status(self, force: bool = False):
|
@@ -3039,7 +3043,6 @@ class kucoin(Exchange, ImplicitAPI):
|
|
3039
3043
|
status = 'canceled'
|
3040
3044
|
if responseStatus == 'fail':
|
3041
3045
|
status = 'rejected'
|
3042
|
-
stopPrice = self.safe_number(order, 'stopPrice')
|
3043
3046
|
return self.safe_order({
|
3044
3047
|
'info': order,
|
3045
3048
|
'id': self.safe_string_n(order, ['id', 'orderId', 'newOrderId', 'cancelledOrderId']),
|
@@ -3051,8 +3054,7 @@ class kucoin(Exchange, ImplicitAPI):
|
|
3051
3054
|
'side': self.safe_string(order, 'side'),
|
3052
3055
|
'amount': self.safe_string(order, 'size'),
|
3053
3056
|
'price': self.safe_string(order, 'price'), # price is zero for market order, omitZero is called in safeOrder2
|
3054
|
-
'
|
3055
|
-
'triggerPrice': stopPrice,
|
3057
|
+
'triggerPrice': self.safe_number(order, 'stopPrice'),
|
3056
3058
|
'cost': self.safe_string(order, 'dealFunds'),
|
3057
3059
|
'filled': self.safe_string(order, 'dealSize'),
|
3058
3060
|
'remaining': None,
|
@@ -1498,8 +1498,8 @@ class kucoinfutures(kucoin, ImplicitAPI):
|
|
1498
1498
|
:param float amount: the amount of currency to trade
|
1499
1499
|
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1500
1500
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1501
|
-
:param dict [params.takeProfit]: *takeProfit object in params* containing the triggerPrice at which the attached take profit order will be triggered
|
1502
|
-
:param dict [params.stopLoss]: *stopLoss object in params* containing the triggerPrice at which the attached stop loss order will be triggered
|
1501
|
+
:param dict [params.takeProfit]: *takeProfit object in params* containing the triggerPrice at which the attached take profit order will be triggered and the triggerPriceType
|
1502
|
+
:param dict [params.stopLoss]: *stopLoss object in params* containing the triggerPrice at which the attached stop loss order will be triggered and the triggerPriceType
|
1503
1503
|
:param float [params.triggerPrice]: The price a trigger order is triggered at
|
1504
1504
|
:param float [params.stopLossPrice]: price to trigger stop-loss orders
|
1505
1505
|
:param float [params.takeProfitPrice]: price to trigger take-profit orders
|
@@ -1511,8 +1511,9 @@ class kucoinfutures(kucoin, ImplicitAPI):
|
|
1511
1511
|
:param float [params.leverage]: Leverage size of the order(mandatory param in request, default is 1)
|
1512
1512
|
:param str [params.clientOid]: client order id, defaults to uuid if not passed
|
1513
1513
|
:param str [params.remark]: remark for the order, length cannot exceed 100 utf8 characters
|
1514
|
-
:param str [params.stop]: 'up' or 'down', the direction the
|
1515
|
-
:param str [params.
|
1514
|
+
:param str [params.stop]: 'up' or 'down', the direction the triggerPrice is triggered from, requires triggerPrice. down: Triggers when the price reaches or goes below the triggerPrice. up: Triggers when the price reaches or goes above the triggerPrice.
|
1515
|
+
:param str [params.triggerPriceType]: "last", "mark", "index" - defaults to "mark"
|
1516
|
+
:param str [params.stopPriceType]: exchange-specific alternative for triggerPriceType: TP, IP or MP
|
1516
1517
|
:param bool [params.closeOrder]: set to True to close position
|
1517
1518
|
:param bool [params.test]: set to True to use the test order endpoint(does not submit order, use to validate params)
|
1518
1519
|
:param bool [params.forceHold]: A mark to forcely hold the funds for an order, even though it's an order to reduce the position size. This helps the order stay on the order book and not get canceled when the position size changes. Set to False by default.
|
@@ -1632,11 +1633,13 @@ class kucoinfutures(kucoin, ImplicitAPI):
|
|
1632
1633
|
if stopLoss is not None:
|
1633
1634
|
slPrice = self.safe_string_2(stopLoss, 'triggerPrice', 'stopPrice')
|
1634
1635
|
request['triggerStopDownPrice'] = self.price_to_precision(symbol, slPrice)
|
1635
|
-
priceType = self.safe_string(stopLoss, 'triggerPriceType',
|
1636
|
+
priceType = self.safe_string(stopLoss, 'triggerPriceType', 'mark')
|
1637
|
+
priceType = self.safe_string(triggerPriceTypes, priceType, priceType)
|
1636
1638
|
if takeProfit is not None:
|
1637
1639
|
tpPrice = self.safe_string_2(takeProfit, 'triggerPrice', 'takeProfitPrice')
|
1638
1640
|
request['triggerStopUpPrice'] = self.price_to_precision(symbol, tpPrice)
|
1639
|
-
priceType = self.safe_string(
|
1641
|
+
priceType = self.safe_string(takeProfit, 'triggerPriceType', 'mark')
|
1642
|
+
priceType = self.safe_string(triggerPriceTypes, priceType, priceType)
|
1640
1643
|
request['stopPriceType'] = priceType
|
1641
1644
|
elif stopLossPrice or takeProfitPrice:
|
1642
1645
|
if stopLossPrice:
|
@@ -2266,7 +2269,6 @@ class kucoinfutures(kucoin, ImplicitAPI):
|
|
2266
2269
|
}
|
2267
2270
|
clientOrderId = self.safe_string(order, 'clientOid')
|
2268
2271
|
timeInForce = self.safe_string(order, 'timeInForce')
|
2269
|
-
stopPrice = self.safe_number(order, 'stopPrice')
|
2270
2272
|
postOnly = self.safe_value(order, 'postOnly')
|
2271
2273
|
reduceOnly = self.safe_value(order, 'reduceOnly')
|
2272
2274
|
lastUpdateTimestamp = self.safe_integer(order, 'updatedAt')
|
@@ -2281,8 +2283,7 @@ class kucoinfutures(kucoin, ImplicitAPI):
|
|
2281
2283
|
'side': side,
|
2282
2284
|
'amount': amount,
|
2283
2285
|
'price': price,
|
2284
|
-
'
|
2285
|
-
'triggerPrice': stopPrice,
|
2286
|
+
'triggerPrice': self.safe_number(order, 'stopPrice'),
|
2286
2287
|
'cost': cost,
|
2287
2288
|
'filled': filled,
|
2288
2289
|
'remaining': None,
|
ccxt/async_support/kuna.py
CHANGED
@@ -1091,7 +1091,6 @@ class kuna(Exchange, ImplicitAPI):
|
|
1091
1091
|
#
|
1092
1092
|
marketId = self.safe_string(order, 'pair')
|
1093
1093
|
datetime = self.safe_string(order, 'createdAt')
|
1094
|
-
triggerPrice = self.safe_string(order, 'stopPrice')
|
1095
1094
|
side = self.safe_string(order, 'side')
|
1096
1095
|
if side == 'Bid':
|
1097
1096
|
side = 'buy'
|
@@ -1112,8 +1111,7 @@ class kuna(Exchange, ImplicitAPI):
|
|
1112
1111
|
'postOnly': None,
|
1113
1112
|
'side': side,
|
1114
1113
|
'price': self.safe_string(order, 'price'),
|
1115
|
-
'
|
1116
|
-
'triggerPrice': triggerPrice,
|
1114
|
+
'triggerPrice': self.safe_string(order, 'stopPrice'),
|
1117
1115
|
'amount': self.safe_string(order, 'quantity'),
|
1118
1116
|
'filled': self.safe_string(order, 'executedQuantity'),
|
1119
1117
|
'remaining': None,
|
ccxt/async_support/latoken.py
CHANGED
@@ -1055,7 +1055,6 @@ class latoken(Exchange, ImplicitAPI):
|
|
1055
1055
|
status = 'open'
|
1056
1056
|
clientOrderId = self.safe_string(order, 'clientOrderId')
|
1057
1057
|
timeInForce = self.parse_time_in_force(self.safe_string(order, 'condition'))
|
1058
|
-
triggerPrice = self.safe_string(order, 'stopPrice')
|
1059
1058
|
return self.safe_order({
|
1060
1059
|
'id': id,
|
1061
1060
|
'clientOrderId': clientOrderId,
|
@@ -1070,8 +1069,7 @@ class latoken(Exchange, ImplicitAPI):
|
|
1070
1069
|
'postOnly': None,
|
1071
1070
|
'side': side,
|
1072
1071
|
'price': price,
|
1073
|
-
'
|
1074
|
-
'triggerPrice': triggerPrice,
|
1072
|
+
'triggerPrice': self.safe_string(order, 'stopPrice'),
|
1075
1073
|
'cost': cost,
|
1076
1074
|
'amount': amount,
|
1077
1075
|
'filled': filled,
|
ccxt/async_support/lbank.py
CHANGED
ccxt/async_support/luno.py
CHANGED
ccxt/async_support/lykke.py
CHANGED