ccxt 4.3.50__py2.py3-none-any.whl → 4.3.51__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/async_support/__init__.py +1 -1
- ccxt/async_support/base/exchange.py +1 -1
- ccxt/async_support/bigone.py +1 -1
- ccxt/async_support/binance.py +290 -329
- ccxt/async_support/binancecoinm.py +1 -0
- ccxt/async_support/binanceusdm.py +2 -0
- ccxt/async_support/bybit.py +32 -0
- ccxt/async_support/exmo.py +1 -1
- ccxt/base/exchange.py +1 -1
- ccxt/bigone.py +1 -1
- ccxt/binance.py +290 -329
- ccxt/binancecoinm.py +1 -0
- ccxt/binanceusdm.py +2 -0
- ccxt/bybit.py +32 -0
- ccxt/exmo.py +1 -1
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/binance.py +36 -36
- ccxt/pro/binancecoinm.py +1 -0
- ccxt/pro/binanceusdm.py +2 -0
- {ccxt-4.3.50.dist-info → ccxt-4.3.51.dist-info}/METADATA +6 -6
- {ccxt-4.3.50.dist-info → ccxt-4.3.51.dist-info}/RECORD +24 -24
- {ccxt-4.3.50.dist-info → ccxt-4.3.51.dist-info}/WHEEL +0 -0
- {ccxt-4.3.50.dist-info → ccxt-4.3.51.dist-info}/top_level.txt +0 -0
ccxt/binancecoinm.py
CHANGED
ccxt/binanceusdm.py
CHANGED
@@ -19,6 +19,7 @@ class binanceusdm(binance, ImplicitAPI):
|
|
19
19
|
'doc': [
|
20
20
|
'https://binance-docs.github.io/apidocs/futures/en/',
|
21
21
|
'https://binance-docs.github.io/apidocs/spot/en',
|
22
|
+
'https://developers.binance.com/en',
|
22
23
|
],
|
23
24
|
},
|
24
25
|
'has': {
|
@@ -40,6 +41,7 @@ class binanceusdm(binance, ImplicitAPI):
|
|
40
41
|
'marginModes': {},
|
41
42
|
},
|
42
43
|
# https://binance-docs.github.io/apidocs/futures/en/#error-codes
|
44
|
+
# https://developers.binance.com/docs/derivatives/usds-margined-futures/error-code
|
43
45
|
'exceptions': {
|
44
46
|
'exact': {
|
45
47
|
'-5021': InvalidOrder, # {"code":-5021,"msg":"Due to the order could not be filled immediately, the FOK order has been rejected."}
|
ccxt/bybit.py
CHANGED
@@ -48,6 +48,7 @@ class bybit(Exchange, ImplicitAPI):
|
|
48
48
|
'option': True,
|
49
49
|
'borrowCrossMargin': True,
|
50
50
|
'cancelAllOrders': True,
|
51
|
+
'cancelAllOrdersAfter': True,
|
51
52
|
'cancelOrder': True,
|
52
53
|
'cancelOrders': True,
|
53
54
|
'cancelOrdersForSymbols': True,
|
@@ -4108,6 +4109,37 @@ class bybit(Exchange, ImplicitAPI):
|
|
4108
4109
|
row = self.safe_list(result, 'list', [])
|
4109
4110
|
return self.parse_orders(row, market)
|
4110
4111
|
|
4112
|
+
def cancel_all_orders_after(self, timeout: Int, params={}):
|
4113
|
+
"""
|
4114
|
+
dead man's switch, cancel all orders after the given timeout
|
4115
|
+
:see: https://bybit-exchange.github.io/docs/v5/order/dcp
|
4116
|
+
:param number timeout: time in milliseconds
|
4117
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
4118
|
+
:param str [params.product]: OPTIONS, DERIVATIVES, SPOT, default is 'DERIVATIVES'
|
4119
|
+
:returns dict: the api result
|
4120
|
+
"""
|
4121
|
+
self.load_markets()
|
4122
|
+
request: dict = {
|
4123
|
+
'timeWindow': self.parse_to_int(timeout / 1000),
|
4124
|
+
}
|
4125
|
+
type: Str = None
|
4126
|
+
type, params = self.handle_market_type_and_params('cancelAllOrdersAfter', None, params, 'swap')
|
4127
|
+
productMap = {
|
4128
|
+
'spot': 'SPOT',
|
4129
|
+
'swap': 'DERIVATIVES',
|
4130
|
+
'option': 'OPTIONS',
|
4131
|
+
}
|
4132
|
+
product = self.safe_string(productMap, type, type)
|
4133
|
+
request['product'] = product
|
4134
|
+
response = self.privatePostV5OrderDisconnectedCancelAll(self.extend(request, params))
|
4135
|
+
#
|
4136
|
+
# {
|
4137
|
+
# "retCode": 0,
|
4138
|
+
# "retMsg": "success"
|
4139
|
+
# }
|
4140
|
+
#
|
4141
|
+
return response
|
4142
|
+
|
4111
4143
|
def cancel_orders_for_symbols(self, orders: List[CancellationRequest], params={}):
|
4112
4144
|
"""
|
4113
4145
|
cancel multiple orders for multiple symbols
|
ccxt/exmo.py
CHANGED
@@ -30,7 +30,7 @@ class exmo(Exchange, ImplicitAPI):
|
|
30
30
|
'id': 'exmo',
|
31
31
|
'name': 'EXMO',
|
32
32
|
'countries': ['LT'], # Lithuania
|
33
|
-
'rateLimit':
|
33
|
+
'rateLimit': 100, # 10 requests per 1 second
|
34
34
|
'version': 'v1.1',
|
35
35
|
'has': {
|
36
36
|
'CORS': None,
|
ccxt/pro/__init__.py
CHANGED
ccxt/pro/binance.py
CHANGED
@@ -88,6 +88,7 @@ class binance(ccxt.async_support.binance):
|
|
88
88
|
'papi': 'wss://fstream.binance.com/pm/ws',
|
89
89
|
},
|
90
90
|
},
|
91
|
+
'doc': 'https://developers.binance.com/en',
|
91
92
|
},
|
92
93
|
'streaming': {
|
93
94
|
'keepAlive': 180000,
|
@@ -194,8 +195,8 @@ class binance(ccxt.async_support.binance):
|
|
194
195
|
async def watch_liquidations(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Liquidation]:
|
195
196
|
"""
|
196
197
|
watch the public liquidations of a trading pair
|
197
|
-
:see: https://binance
|
198
|
-
:see: https://binance
|
198
|
+
:see: https://developers.binance.com/docs/derivatives/usds-margined-futures/websocket-market-streams/Liquidation-Order-Streams
|
199
|
+
:see: https://developers.binance.com/docs/derivatives/coin-margined-futures/websocket-market-streams/Liquidation-Order-Streams
|
199
200
|
:param str symbol: unified CCXT market symbol
|
200
201
|
:param int [since]: the earliest time in ms to fetch liquidations for
|
201
202
|
:param int [limit]: the maximum number of liquidation structures to retrieve
|
@@ -207,8 +208,8 @@ class binance(ccxt.async_support.binance):
|
|
207
208
|
async def watch_liquidations_for_symbols(self, symbols: List[str] = None, since: Int = None, limit: Int = None, params={}) -> List[Liquidation]:
|
208
209
|
"""
|
209
210
|
watch the public liquidations of a trading pair
|
210
|
-
:see: https://binance
|
211
|
-
:see: https://binance
|
211
|
+
:see: https://developers.binance.com/docs/derivatives/usds-margined-futures/websocket-market-streams/All-Market-Liquidation-Order-Streams
|
212
|
+
:see: https://developers.binance.com/docs/derivatives/coin-margined-futures/websocket-market-streams/All-Market-Liquidation-Order-Streams
|
212
213
|
:param str symbol: unified CCXT market symbol
|
213
214
|
:param int [since]: the earliest time in ms to fetch liquidations for
|
214
215
|
:param int [limit]: the maximum number of liquidation structures to retrieve
|
@@ -403,8 +404,8 @@ class binance(ccxt.async_support.binance):
|
|
403
404
|
async def watch_my_liquidations(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Liquidation]:
|
404
405
|
"""
|
405
406
|
watch the private liquidations of a trading pair
|
406
|
-
:see: https://binance
|
407
|
-
:see: https://binance
|
407
|
+
:see: https://developers.binance.com/docs/derivatives/usds-margined-futures/user-data-streams/Event-Order-Update
|
408
|
+
:see: https://developers.binance.com/docs/derivatives/coin-margined-futures/user-data-streams/Event-Order-Update
|
408
409
|
:param str symbol: unified CCXT market symbol
|
409
410
|
:param int [since]: the earliest time in ms to fetch liquidations for
|
410
411
|
:param int [limit]: the maximum number of liquidation structures to retrieve
|
@@ -416,8 +417,8 @@ class binance(ccxt.async_support.binance):
|
|
416
417
|
async def watch_my_liquidations_for_symbols(self, symbols: List[str], since: Int = None, limit: Int = None, params={}) -> List[Liquidation]:
|
417
418
|
"""
|
418
419
|
watch the private liquidations of a trading pair
|
419
|
-
:see: https://binance
|
420
|
-
:see: https://binance
|
420
|
+
:see: https://developers.binance.com/docs/derivatives/usds-margined-futures/user-data-streams/Event-Order-Update
|
421
|
+
:see: https://developers.binance.com/docs/derivatives/coin-margined-futures/user-data-streams/Event-Order-Update
|
421
422
|
:param str symbol: unified CCXT market symbol
|
422
423
|
:param int [since]: the earliest time in ms to fetch liquidations for
|
423
424
|
:param int [limit]: the maximum number of liquidation structures to retrieve
|
@@ -611,7 +612,8 @@ class binance(ccxt.async_support.binance):
|
|
611
612
|
async def fetch_order_book_ws(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
|
612
613
|
"""
|
613
614
|
fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
614
|
-
:see: https://binance
|
615
|
+
:see: https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#order-book
|
616
|
+
:see: https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/websocket-api/Order-Book
|
615
617
|
:param str symbol: unified symbol of the market to fetch the order book for
|
616
618
|
:param int [limit]: the maximum amount of order book entries to return
|
617
619
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -1204,7 +1206,6 @@ class binance(ccxt.async_support.binance):
|
|
1204
1206
|
async def fetch_ticker_ws(self, symbol: str, params={}) -> Ticker:
|
1205
1207
|
"""
|
1206
1208
|
fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
1207
|
-
:see: https://binance-docs.github.io/apidocs/voptions/en/#24hr-ticker-price-change-statistics
|
1208
1209
|
:param str symbol: unified symbol of the market to fetch the ticker for
|
1209
1210
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1210
1211
|
:param str [params.method]: method to use can be ticker.price or ticker.book
|
@@ -1241,8 +1242,8 @@ class binance(ccxt.async_support.binance):
|
|
1241
1242
|
|
1242
1243
|
async def fetch_ohlcv_ws(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
|
1243
1244
|
"""
|
1244
|
-
:see: https://binance-docs.github.io/apidocs/websocket_api/en/#klines
|
1245
1245
|
query historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
1246
|
+
:see: https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#klines
|
1246
1247
|
:param str symbol: unified symbol of the market to query OHLCV data for
|
1247
1248
|
:param str timeframe: the length of time each candle represents
|
1248
1249
|
:param int since: timestamp in ms of the earliest candle to fetch
|
@@ -1356,10 +1357,10 @@ class binance(ccxt.async_support.binance):
|
|
1356
1357
|
|
1357
1358
|
async def watch_bids_asks(self, symbols: Strings = None, params={}) -> Tickers:
|
1358
1359
|
"""
|
1359
|
-
:see: https://binance-docs.github.io/apidocs/spot/en/#individual-symbol-book-ticker-streams
|
1360
|
-
:see: https://binance-docs.github.io/apidocs/futures/en/#all-book-tickers-stream
|
1361
|
-
:see: https://binance-docs.github.io/apidocs/delivery/en/#all-book-tickers-stream
|
1362
1360
|
watches best bid & ask for symbols
|
1361
|
+
:see: https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#symbol-order-book-ticker
|
1362
|
+
:see: https://developers.binance.com/docs/derivatives/usds-margined-futures/websocket-market-streams/All-Book-Tickers-Stream
|
1363
|
+
:see: https://developers.binance.com/docs/derivatives/coin-margined-futures/websocket-market-streams/All-Book-Tickers-Stream
|
1363
1364
|
:param str[] symbols: unified symbol of the market to fetch the ticker for
|
1364
1365
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1365
1366
|
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
@@ -1812,9 +1813,8 @@ class binance(ccxt.async_support.binance):
|
|
1812
1813
|
async def fetch_balance_ws(self, params={}) -> Balances:
|
1813
1814
|
"""
|
1814
1815
|
fetch balance and get the amount of funds available for trading or funds locked in orders
|
1815
|
-
:see: https://binance
|
1816
|
-
:see: https://binance
|
1817
|
-
:see: https://binance-docs.github.io/apidocs/futures/en/#futures-account-balance-user_data
|
1816
|
+
:see: https://developers.binance.com/docs/derivatives/usds-margined-futures/account/websocket-api/Futures-Account-Balance
|
1817
|
+
:see: https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#account-information-user_data
|
1818
1818
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1819
1819
|
:param str|None [params.type]: 'future', 'delivery', 'savings', 'funding', or 'spot'
|
1820
1820
|
:param str|None [params.marginMode]: 'cross' or 'isolated', for margin trading, uses self.options.defaultMarginMode if not passed, defaults to None/None/None
|
@@ -1909,7 +1909,7 @@ class binance(ccxt.async_support.binance):
|
|
1909
1909
|
|
1910
1910
|
async def fetch_position_ws(self, symbol: str, params={}) -> List[Position]:
|
1911
1911
|
"""
|
1912
|
-
:see: https://binance
|
1912
|
+
:see: https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/websocket-api/Position-Information
|
1913
1913
|
fetch data on an open position
|
1914
1914
|
:param str symbol: unified market symbol of the market the position is held in
|
1915
1915
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -1920,7 +1920,7 @@ class binance(ccxt.async_support.binance):
|
|
1920
1920
|
async def fetch_positions_ws(self, symbols: Strings = None, params={}) -> List[Position]:
|
1921
1921
|
"""
|
1922
1922
|
fetch all open positions
|
1923
|
-
:see: https://binance
|
1923
|
+
:see: https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/websocket-api/Position-Information
|
1924
1924
|
:param str[] [symbols]: list of unified market symbols
|
1925
1925
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1926
1926
|
:param boolean [params.returnRateLimits]: set to True to return rate limit informations, defaults to False.
|
@@ -2138,9 +2138,9 @@ class binance(ccxt.async_support.binance):
|
|
2138
2138
|
|
2139
2139
|
async def create_order_ws(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={}) -> Order:
|
2140
2140
|
"""
|
2141
|
-
:see: https://binance-docs.github.io/apidocs/websocket_api/en/#place-new-order-trade
|
2142
|
-
:see: https://binance-docs.github.io/apidocs/futures/en/#new-order-trade-2
|
2143
2141
|
create a trade order
|
2142
|
+
:see: https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#place-new-order-trade
|
2143
|
+
:see: https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/websocket-api/New-Order
|
2144
2144
|
:param str symbol: unified symbol of the market to create an order in
|
2145
2145
|
:param str type: 'market' or 'limit'
|
2146
2146
|
:param str side: 'buy' or 'sell'
|
@@ -2281,8 +2281,8 @@ class binance(ccxt.async_support.binance):
|
|
2281
2281
|
async def edit_order_ws(self, id: str, symbol: str, type: OrderType, side: OrderSide, amount: Num = None, price: Num = None, params={}) -> Order:
|
2282
2282
|
"""
|
2283
2283
|
edit a trade order
|
2284
|
-
:see: https://binance
|
2285
|
-
:see: https://binance
|
2284
|
+
:see: https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#cancel-and-replace-order-trade
|
2285
|
+
:see: https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/websocket-api/Modify-Order
|
2286
2286
|
:param str id: order id
|
2287
2287
|
:param str symbol: unified symbol of the market to create an order in
|
2288
2288
|
:param str type: 'market' or 'limit'
|
@@ -2429,9 +2429,9 @@ class binance(ccxt.async_support.binance):
|
|
2429
2429
|
|
2430
2430
|
async def cancel_order_ws(self, id: str, symbol: Str = None, params={}) -> Order:
|
2431
2431
|
"""
|
2432
|
-
:see: https://binance-docs.github.io/apidocs/websocket_api/en/#cancel-order-trade
|
2433
|
-
:see: https://binance-docs.github.io/apidocs/futures/en/#cancel-order-trade-2
|
2434
2432
|
cancel multiple orders
|
2433
|
+
:see: https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#cancel-order-trade
|
2434
|
+
:see: https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/websocket-api/Cancel-Order
|
2435
2435
|
:param str id: order id
|
2436
2436
|
:param str symbol: unified market symbol, default is None
|
2437
2437
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -2470,8 +2470,8 @@ class binance(ccxt.async_support.binance):
|
|
2470
2470
|
|
2471
2471
|
async def cancel_all_orders_ws(self, symbol: Str = None, params={}):
|
2472
2472
|
"""
|
2473
|
-
:see: https://binance-docs.github.io/apidocs/websocket_api/en/#current-open-orders-user_data
|
2474
2473
|
cancel all open orders in a market
|
2474
|
+
:see: https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#cancel-open-orders-trade
|
2475
2475
|
:param str symbol: unified market symbol of the market to cancel orders in
|
2476
2476
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
2477
2477
|
:returns dict[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
@@ -2502,9 +2502,9 @@ class binance(ccxt.async_support.binance):
|
|
2502
2502
|
|
2503
2503
|
async def fetch_order_ws(self, id: str, symbol: Str = None, params={}) -> Order:
|
2504
2504
|
"""
|
2505
|
-
:see: https://binance-docs.github.io/apidocs/websocket_api/en/#query-order-user_data
|
2506
|
-
:see: https://binance-docs.github.io/apidocs/futures/en/#query-order-user_data-2
|
2507
2505
|
fetches information on an order made by the user
|
2506
|
+
:see: https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#query-order-user_data
|
2507
|
+
:see: https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/websocket-api/Query-Order
|
2508
2508
|
:param str symbol: unified symbol of the market the order was made in
|
2509
2509
|
:param dict params: extra parameters specific to the exchange API endpoint
|
2510
2510
|
:returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
@@ -2542,8 +2542,8 @@ class binance(ccxt.async_support.binance):
|
|
2542
2542
|
|
2543
2543
|
async def fetch_orders_ws(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
2544
2544
|
"""
|
2545
|
-
:see: https://binance-docs.github.io/apidocs/websocket_api/en/#account-order-history-user_data
|
2546
2545
|
fetches information on multiple orders made by the user
|
2546
|
+
:see: https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#query-order-list-user_data
|
2547
2547
|
:param str symbol: unified market symbol of the market orders were made in
|
2548
2548
|
:param int|None [since]: the earliest time in ms to fetch orders for
|
2549
2549
|
:param int|None [limit]: the maximum number of order structures to retrieve
|
@@ -2583,8 +2583,8 @@ class binance(ccxt.async_support.binance):
|
|
2583
2583
|
|
2584
2584
|
async def fetch_closed_orders_ws(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
2585
2585
|
"""
|
2586
|
-
:see: https://binance-docs.github.io/apidocs/websocket_api/en/#account-order-history-user_data
|
2587
2586
|
fetch closed orders
|
2587
|
+
:see: https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#query-order-list-user_data
|
2588
2588
|
:param str symbol: unified market symbol
|
2589
2589
|
:param int [since]: the earliest time in ms to fetch open orders for
|
2590
2590
|
:param int [limit]: the maximum number of open orders structures to retrieve
|
@@ -2601,8 +2601,8 @@ class binance(ccxt.async_support.binance):
|
|
2601
2601
|
|
2602
2602
|
async def fetch_open_orders_ws(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
2603
2603
|
"""
|
2604
|
-
:see: https://binance-docs.github.io/apidocs/websocket_api/en/#current-open-orders-user_data
|
2605
2604
|
fetch all unfilled currently open orders
|
2605
|
+
:see: https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#current-open-orders-user_data
|
2606
2606
|
:param str symbol: unified market symbol
|
2607
2607
|
:param int|None [since]: the earliest time in ms to fetch open orders for
|
2608
2608
|
:param int|None [limit]: the maximum number of open orders structures to retrieve
|
@@ -2638,9 +2638,9 @@ class binance(ccxt.async_support.binance):
|
|
2638
2638
|
async def watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
2639
2639
|
"""
|
2640
2640
|
watches information on multiple orders made by the user
|
2641
|
-
:see: https://binance
|
2642
|
-
:see: https://binance
|
2643
|
-
:see: https://binance
|
2641
|
+
:see: https://developers.binance.com/docs/binance-spot-api-docs/user-data-stream#order-update
|
2642
|
+
:see: https://developers.binance.com/docs/margin_trading/trade-data-stream/Event-Order-Update
|
2643
|
+
:see: https://developers.binance.com/docs/derivatives/usds-margined-futures/user-data-streams/Event-Order-Update
|
2644
2644
|
:param str symbol: unified market symbol of the market the orders were made in
|
2645
2645
|
:param int [since]: the earliest time in ms to fetch orders for
|
2646
2646
|
:param int [limit]: the maximum number of order structures to retrieve
|
@@ -3117,8 +3117,8 @@ class binance(ccxt.async_support.binance):
|
|
3117
3117
|
|
3118
3118
|
async def fetch_my_trades_ws(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
3119
3119
|
"""
|
3120
|
-
:see: https://binance-docs.github.io/apidocs/websocket_api/en/#account-trade-history-user_data
|
3121
3120
|
fetch all trades made by the user
|
3121
|
+
:see: https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#account-trade-history-user_data
|
3122
3122
|
:param str symbol: unified market symbol
|
3123
3123
|
:param int|None [since]: the earliest time in ms to fetch trades for
|
3124
3124
|
:param int|None [limit]: the maximum number of trades structures to retrieve
|
@@ -3163,8 +3163,8 @@ class binance(ccxt.async_support.binance):
|
|
3163
3163
|
|
3164
3164
|
async def fetch_trades_ws(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
3165
3165
|
"""
|
3166
|
-
:see: https://binance-docs.github.io/apidocs/websocket_api/en/#recent-trades
|
3167
3166
|
fetch all trades made by the user
|
3167
|
+
:see: https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#recent-trades
|
3168
3168
|
:param str symbol: unified market symbol
|
3169
3169
|
:param int [since]: the earliest time in ms to fetch trades for
|
3170
3170
|
:param int [limit]: the maximum number of trades structures to retrieve, default=500, max=1000
|
ccxt/pro/binancecoinm.py
CHANGED
@@ -20,6 +20,7 @@ class binancecoinm(binance):
|
|
20
20
|
'name': 'Binance COIN-M',
|
21
21
|
'urls': {
|
22
22
|
'logo': 'https://user-images.githubusercontent.com/1294454/117738721-668c8d80-b205-11eb-8c49-3fad84c4a07f.jpg',
|
23
|
+
'doc': 'https://developers.binance.com/en',
|
23
24
|
},
|
24
25
|
'options': {
|
25
26
|
'fetchMarkets': ['inverse'],
|
ccxt/pro/binanceusdm.py
CHANGED
@@ -15,12 +15,14 @@ class binanceusdm(binance):
|
|
15
15
|
'name': 'Binance USDⓈ-M',
|
16
16
|
'urls': {
|
17
17
|
'logo': 'https://user-images.githubusercontent.com/1294454/117738721-668c8d80-b205-11eb-8c49-3fad84c4a07f.jpg',
|
18
|
+
'doc': 'https://developers.binance.com/en',
|
18
19
|
},
|
19
20
|
'options': {
|
20
21
|
'fetchMarkets': ['linear'],
|
21
22
|
'defaultSubType': 'linear',
|
22
23
|
},
|
23
24
|
# https://binance-docs.github.io/apidocs/futures/en/#error-codes
|
25
|
+
# https://developers.binance.com/docs/derivatives/usds-margined-futures/error-code
|
24
26
|
'exceptions': {
|
25
27
|
'exact': {
|
26
28
|
'-5021': InvalidOrder, # {"code":-5021,"msg":"Due to the order could not be filled immediately, the FOK order has been rejected."}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.51
|
4
4
|
Summary: A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges
|
5
5
|
Home-page: https://ccxt.com
|
6
6
|
Author: Igor Kroitor
|
@@ -84,7 +84,7 @@ Current feature list:
|
|
84
84
|
|
85
85
|
| logo | id | name | ver | type | certified | pro | discount |
|
86
86
|
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------|-------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------:|------|-----------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------:|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
87
|
-
| [](https://accounts.binance.com/en/register?ref=D7YA7CLY) | binance | [Binance](https://accounts.binance.com/en/register?ref=D7YA7CLY) | [](https://binance
|
87
|
+
| [](https://accounts.binance.com/en/register?ref=D7YA7CLY) | binance | [Binance](https://accounts.binance.com/en/register?ref=D7YA7CLY) | [](https://developers.binance.com/en) | cex | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | [](https://accounts.binance.com/en/register?ref=D7YA7CLY) |
|
88
88
|
| [](https://accounts.binance.com/en/register?ref=D7YA7CLY) | binancecoinm | [Binance COIN-M](https://accounts.binance.com/en/register?ref=D7YA7CLY) | [](https://binance-docs.github.io/apidocs/delivery/en/) | cex | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | [](https://accounts.binance.com/en/register?ref=D7YA7CLY) |
|
89
89
|
| [](https://accounts.binance.com/en/register?ref=D7YA7CLY) | binanceusdm | [Binance USDⓈ-M](https://accounts.binance.com/en/register?ref=D7YA7CLY) | [](https://binance-docs.github.io/apidocs/futures/en/) | cex | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | [](https://accounts.binance.com/en/register?ref=D7YA7CLY) |
|
90
90
|
| [](https://bingx.com/invite/OHETOM) | bingx | [BingX](https://bingx.com/invite/OHETOM) | [](https://bingx-api.github.io/docs/) | cex | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | |
|
@@ -116,7 +116,7 @@ The CCXT library currently supports the following 100 cryptocurrency exchange ma
|
|
116
116
|
| [](https://ascendex.com/en-us/register?inviteCode=EL6BXBQM) | ascendex | [AscendEX](https://ascendex.com/en-us/register?inviteCode=EL6BXBQM) | [](https://ascendex.github.io/ascendex-pro-api/#ascendex-pro-api-documentation) | cex | | [](https://ccxt.pro) |
|
117
117
|
| [](https://bequant.io/referral/dd104e3bee7634ec) | bequant | [Bequant](https://bequant.io/referral/dd104e3bee7634ec) | [](https://api.bequant.io/) | cex | | [](https://ccxt.pro) |
|
118
118
|
| [](https://b1.run/users/new?code=D3LLBVFT) | bigone | [BigONE](https://b1.run/users/new?code=D3LLBVFT) | [](https://open.big.one/docs/api.html) | cex | | |
|
119
|
-
| [](https://accounts.binance.com/en/register?ref=D7YA7CLY) | binance | [Binance](https://accounts.binance.com/en/register?ref=D7YA7CLY) | [](https://binance
|
119
|
+
| [](https://accounts.binance.com/en/register?ref=D7YA7CLY) | binance | [Binance](https://accounts.binance.com/en/register?ref=D7YA7CLY) | [](https://developers.binance.com/en) | cex | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) |
|
120
120
|
| [](https://accounts.binance.com/en/register?ref=D7YA7CLY) | binancecoinm | [Binance COIN-M](https://accounts.binance.com/en/register?ref=D7YA7CLY) | [](https://binance-docs.github.io/apidocs/delivery/en/) | cex | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) |
|
121
121
|
| [](https://www.binance.us/?ref=35005074) | binanceus | [Binance US](https://www.binance.us/?ref=35005074) | [](https://github.com/binance-us/binance-official-api-docs) | cex | | [](https://ccxt.pro) |
|
122
122
|
| [](https://accounts.binance.com/en/register?ref=D7YA7CLY) | binanceusdm | [Binance USDⓈ-M](https://accounts.binance.com/en/register?ref=D7YA7CLY) | [](https://binance-docs.github.io/apidocs/futures/en/) | cex | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) |
|
@@ -268,13 +268,13 @@ console.log(version, Object.keys(exchanges));
|
|
268
268
|
|
269
269
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
270
270
|
|
271
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
272
|
-
* unpkg: https://unpkg.com/ccxt@4.3.
|
271
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.51/dist/ccxt.browser.min.js
|
272
|
+
* unpkg: https://unpkg.com/ccxt@4.3.51/dist/ccxt.browser.min.js
|
273
273
|
|
274
274
|
CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
|
275
275
|
|
276
276
|
```HTML
|
277
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
277
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.51/dist/ccxt.browser.min.js"></script>
|
278
278
|
```
|
279
279
|
|
280
280
|
Creates a global `ccxt` object:
|
@@ -1,13 +1,13 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=W2ir3lSLGCdxEufMeQDL8HKJ-bWTq020xratb5KMP3w,16139
|
2
2
|
ccxt/ace.py,sha256=RC6jY5dSbiE4cI_MS0thZbDArWn3Drl8Vm1NFzTTQaI,41675
|
3
3
|
ccxt/alpaca.py,sha256=EZ7uF3XI8EXXIsCZ-UVpruBXS96Kps6WOOukmdcgCn0,47326
|
4
4
|
ccxt/ascendex.py,sha256=rUUU3n4j8QrMrJCk4pVwVastIYzS3eDTUAL9R2ePErk,151832
|
5
5
|
ccxt/bequant.py,sha256=RBiAmaTbL35DgiV3Hl6uchLUd78V0z1T9riTlNsrpdc,1174
|
6
|
-
ccxt/bigone.py,sha256=
|
7
|
-
ccxt/binance.py,sha256=
|
8
|
-
ccxt/binancecoinm.py,sha256=
|
6
|
+
ccxt/bigone.py,sha256=5GC1EYr5JbS9utI01_tzFvr41zcf3Q6zxECqV7LbaJE,92435
|
7
|
+
ccxt/binance.py,sha256=X4KBRGRnpih7ZVNlA0nY8WwETBQoclv7MPigSpEvEcQ,629370
|
8
|
+
ccxt/binancecoinm.py,sha256=arFnEh8mErSyi23eVPWE4iwoT7PWQyxGGVJCKCy6UJY,1702
|
9
9
|
ccxt/binanceus.py,sha256=hdcT4OnadcdFFFjF3GtM0nWv90jqojqwdVS3xWGuW40,9163
|
10
|
-
ccxt/binanceusdm.py,sha256=
|
10
|
+
ccxt/binanceusdm.py,sha256=bAPcJj5HLxoCdPolriM8sJpoTBwbV78vBTbKRmWhNP4,2632
|
11
11
|
ccxt/bingx.py,sha256=4a4qVnjtDZTbI2R2qIq_ojazjesh3nfVz6IWGHN2WRo,188784
|
12
12
|
ccxt/bit2c.py,sha256=un1ZuLNvEt7bkceNeue3UctEoFA-xpoKQlnq4bX5Slc,37062
|
13
13
|
ccxt/bitbank.py,sha256=yxS-W5FeA2Kqp7VbdNt6960GjuMflKVqUlTbtKPgqUY,43535
|
@@ -35,7 +35,7 @@ ccxt/btcalpha.py,sha256=LyqEmXi-h6pz6MaVcBLWGBDGMuDiu2cXbwk35jXb1_k,36967
|
|
35
35
|
ccxt/btcbox.py,sha256=1Vs2A4jOe5Wc4qgOblDBrIyRmp0m_aQZCk9-R7DvSqs,23588
|
36
36
|
ccxt/btcmarkets.py,sha256=hHxrZSgrjdgvaXEJkDGPQbKxlwT8Dz1XN3UwhvYqmys,52632
|
37
37
|
ccxt/btcturk.py,sha256=IqUB3IL4pJlIWEMfD50FNH7gcycC6Q9rLdRe7RZaUro,36993
|
38
|
-
ccxt/bybit.py,sha256=
|
38
|
+
ccxt/bybit.py,sha256=VikdLzKK_CNOcaXMtlSNeVczCzczbKD0z55lLNM2Y88,414431
|
39
39
|
ccxt/cex.py,sha256=IUb295DSS6H3SsPbCjvBKPzzNpQYvBXaRqFF-T450wM,70086
|
40
40
|
ccxt/coinbase.py,sha256=jTQ91In82SqxfgMJ7kyHD2b8NqW_vOWchmTm825ADac,217233
|
41
41
|
ccxt/coinbaseadvanced.py,sha256=d5g6nRx-NCcCwZDdtp8FsI2D-pRjSvnAP9ISSKY_nCQ,538
|
@@ -54,7 +54,7 @@ ccxt/currencycom.py,sha256=jBEoXXXOcdTAt6O0l98VN_R7UEZSHZ9BlEApyAwq8Gc,87047
|
|
54
54
|
ccxt/delta.py,sha256=5Tq-vZLv9etCj6RuctbhSp7CgF-jYToxHNux6W9poqU,150751
|
55
55
|
ccxt/deribit.py,sha256=VZObUl69FCtWtdiLCAEJul8aylCnvEv1QVhWcyMHG5s,160957
|
56
56
|
ccxt/digifinex.py,sha256=voS8-RVYGcvOS8awc3nC2XHAHi_gt1zCl3jysLr6DI4,168479
|
57
|
-
ccxt/exmo.py,sha256=
|
57
|
+
ccxt/exmo.py,sha256=UPfaZGH0zQZ-XNJ9L64YeVeFxHczxsiQtrza0-3rRLs,114640
|
58
58
|
ccxt/fmfwio.py,sha256=RbVLvzPwnqfDsE7Ea-N13ISCC82eJVPsXYjrleASmew,1236
|
59
59
|
ccxt/gate.py,sha256=BmnaATxpIRPbTVkHSVqpBr2ggLWq5kTFsWx2vW6oOwE,322771
|
60
60
|
ccxt/gateio.py,sha256=86AETJWODl_vA5VNeQRHZprmpNIY1HAxCddKZcnKSi8,445
|
@@ -214,16 +214,16 @@ ccxt/abstract/xt.py,sha256=xHHv2viFGK0_iPZ4gu6Wb0aOrpcKhr9zoY-BIPWh5bs,27028
|
|
214
214
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
215
215
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
216
216
|
ccxt/abstract/zonda.py,sha256=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
|
217
|
-
ccxt/async_support/__init__.py,sha256=
|
217
|
+
ccxt/async_support/__init__.py,sha256=c2yboelfUWcRyfZz6KKR7qUxdWA2CNCe1n1Z3f1pcA4,15932
|
218
218
|
ccxt/async_support/ace.py,sha256=ffpHbADxBOtT3QliUmoex2pTS7sSWB7CwO_SAPKJqDs,41899
|
219
219
|
ccxt/async_support/alpaca.py,sha256=3845DgojoA1p0pxrqnDIqHbbRcEwZhZIkE4aygD5ics,47538
|
220
220
|
ccxt/async_support/ascendex.py,sha256=7tZ4C7FfzmuB_ADYjl6IkyQQ5JG0Vt1AD_B3fTeY6V0,152620
|
221
221
|
ccxt/async_support/bequant.py,sha256=1hTwHovo1bW1XTIc8ZKjvJ-Xg6LfmpGdzT7TepykaVM,1188
|
222
|
-
ccxt/async_support/bigone.py,sha256=
|
223
|
-
ccxt/async_support/binance.py,sha256=
|
224
|
-
ccxt/async_support/binancecoinm.py,sha256=
|
222
|
+
ccxt/async_support/bigone.py,sha256=sjHT2w4iVYyNCELOhrgIxn3kDQsSfnl8l9HK73-RQrA,92889
|
223
|
+
ccxt/async_support/binance.py,sha256=NdI4O5OSbDDBWDLUxbIvWNF69QpWy065xGPY9m5KHEs,632086
|
224
|
+
ccxt/async_support/binancecoinm.py,sha256=yeE73xG5UXD_X3VPul6DMGnV_mgJfWYskpas1BUDdCU,1740
|
225
225
|
ccxt/async_support/binanceus.py,sha256=c-K3Tk7LaRJjmYdCx8vBOqsx01uXrtvt0PC2ekBiD0g,9177
|
226
|
-
ccxt/async_support/binanceusdm.py,sha256
|
226
|
+
ccxt/async_support/binanceusdm.py,sha256=8ugRkx7vyYmn67wdkEEf2f-DFMGAoC4t09usKlPVNyw,2670
|
227
227
|
ccxt/async_support/bingx.py,sha256=z9hkjHE1fklCaHmoJdxJ2ng-RaTGy1PxiejUjJtjFhA,189820
|
228
228
|
ccxt/async_support/bit2c.py,sha256=5div5D1LV3QHZUqL3CDdKaBDATQ3c2Phglx9JpAb7fY,37274
|
229
229
|
ccxt/async_support/bitbank.py,sha256=47jVvH8--NkV11uL-1X22vEg0YMyLc--SVtVuTLrFCI,43795
|
@@ -251,7 +251,7 @@ ccxt/async_support/btcalpha.py,sha256=SYmpEot6Knp0B0FAZ5-0r_w5SuQqEhQYFwLnTekyiA
|
|
251
251
|
ccxt/async_support/btcbox.py,sha256=ML57vDSZC7UJfl5MvNKytPtvyR_rOnIoBOZRhGPxWwE,23782
|
252
252
|
ccxt/async_support/btcmarkets.py,sha256=KX4Vwn4LCAJqx2TgsevAAdF9gFTpUPRrEqp3CYizsnw,52982
|
253
253
|
ccxt/async_support/btcturk.py,sha256=wWelnADTNhrGGVH0qjuDaOPZ5xkMblggHUDFGQBMG20,37211
|
254
|
-
ccxt/async_support/bybit.py,sha256=
|
254
|
+
ccxt/async_support/bybit.py,sha256=8qZvwpqxyLRX2-YbYyWQ1F_DVgqzt3aM3tUlUD8fbF0,416253
|
255
255
|
ccxt/async_support/cex.py,sha256=8XcqkxF2fSzLnenfkyvXxHmnWgUvrifaBAI-HiJLIZY,70436
|
256
256
|
ccxt/async_support/coinbase.py,sha256=oZCypjcCiAPf5dIZqbmu_ZcGjunkkPg4wLtqw1KUHfs,218387
|
257
257
|
ccxt/async_support/coinbaseadvanced.py,sha256=Kupwnuxiu_qTjwCNV2asacoDUNFQvcaHNAznUJPhdQs,552
|
@@ -270,7 +270,7 @@ ccxt/async_support/currencycom.py,sha256=0PN7KdVtToQarUyNBTD6u2rkyBIqtjeijYy_TaH
|
|
270
270
|
ccxt/async_support/delta.py,sha256=J68hp_A1EuKq9Gbc7hRVHII1I0y24WSB3Qp-8j6OvDk,151359
|
271
271
|
ccxt/async_support/deribit.py,sha256=zsEfLA_NoBlzeteb_C5S0VaAjn87aw4yN2MedrDq5B8,161733
|
272
272
|
ccxt/async_support/digifinex.py,sha256=aISKfvbmU5j33zKy0XWX4vnXhmRek3kXs5YPIVkT5Ac,169449
|
273
|
-
ccxt/async_support/exmo.py,sha256=
|
273
|
+
ccxt/async_support/exmo.py,sha256=LVqViwEGLlUIKqN3vB9fzRTdWf-bExuIHaLWRZvsesM,115272
|
274
274
|
ccxt/async_support/fmfwio.py,sha256=lzfSnPrB2ARcC3EIqAuBM4vyg6LJ6n8RE71Zvt3ez1s,1250
|
275
275
|
ccxt/async_support/gate.py,sha256=9IMIZmfy_ElxfF59wu-CX-_H3_sBzgiRbslxCM7E1ac,324449
|
276
276
|
ccxt/async_support/gateio.py,sha256=6_t032F9p9x5KGTjtSuqGXITzFOx-XAQBYLpsuQjzxw,459
|
@@ -323,7 +323,7 @@ ccxt/async_support/yobit.py,sha256=KQcu9nXJPDlAodZyxOXKIn6eTSLmlvUlgRFE6EBLfug,5
|
|
323
323
|
ccxt/async_support/zaif.py,sha256=jTK5pLZSpKL1Pt0qAJTjN09TDS5AfhptGgGAqw7sNwE,29045
|
324
324
|
ccxt/async_support/zonda.py,sha256=skMMmUUjXJmnQpzlFrJfmg4-vEIOsTGz2zSW9nI4C90,81721
|
325
325
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
326
|
-
ccxt/async_support/base/exchange.py,sha256=
|
326
|
+
ccxt/async_support/base/exchange.py,sha256=gAJA0_w6vEv7u7fyCvShROvrWckEJbitnhqxY1DpagI,109872
|
327
327
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
328
328
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
329
329
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=5IEiT0elWI9a7Vr-KV0jgmlbpLJWBzIlrLaCkTKGaqY,5752
|
@@ -337,17 +337,17 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
|
|
337
337
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
338
338
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
339
339
|
ccxt/base/errors.py,sha256=FGdyULeNCNcl52gA_CNhe2dZmat9GJGkTdlIyDXAF_A,4213
|
340
|
-
ccxt/base/exchange.py,sha256=
|
340
|
+
ccxt/base/exchange.py,sha256=aw_RxcoM3-tFExU8m8Q-YWH2XO0MJXDdgw7sZ2GwLQ8,280894
|
341
341
|
ccxt/base/precise.py,sha256=_xfu54sV0vWNnOfGTKRFykeuWP8mn4K1m9lk1tcllX4,8565
|
342
342
|
ccxt/base/types.py,sha256=RGGcbz86cVtrmU602zoFO5gSWrv_J7IHxQkPnzmNirs,9247
|
343
|
-
ccxt/pro/__init__.py,sha256=
|
343
|
+
ccxt/pro/__init__.py,sha256=m5k6K0z4A-vqs7FU6Z3wcGR2ofcSGChwVUBfzukWYK4,7207
|
344
344
|
ccxt/pro/alpaca.py,sha256=QA_Dmxu1ockCSYJMbOodbNke3t1tAl0hFL-q56UMQWE,27224
|
345
345
|
ccxt/pro/ascendex.py,sha256=181FIeztchLqGmgecRJEN8F8xEM45D5aMKhC-5nuNfU,35467
|
346
346
|
ccxt/pro/bequant.py,sha256=5zbsP8BHQTUZ8ZNL6uaACxDbUClgkOV4SYfXT_LfQVg,1351
|
347
|
-
ccxt/pro/binance.py,sha256=
|
348
|
-
ccxt/pro/binancecoinm.py,sha256=
|
347
|
+
ccxt/pro/binance.py,sha256=oFwZckO1pHFbUt3TG2d8TBBK4Sgd331U0HFBtx7isoU,171500
|
348
|
+
ccxt/pro/binancecoinm.py,sha256=LlgF4rXHHrsQMaklhTEzSiE6U9V25AjHHg_DRat7Mf0,1036
|
349
349
|
ccxt/pro/binanceus.py,sha256=_IXpS_wyH0nEtsLR7cJLtrUlsNQoG0MSUVo3PV0RDDc,1946
|
350
|
-
ccxt/pro/binanceusdm.py,sha256=
|
350
|
+
ccxt/pro/binanceusdm.py,sha256=lLdOv0d-lM-1wfCc_y_POb6GdmVIiX7PFzmKTWsVyNw,1512
|
351
351
|
ccxt/pro/bingx.py,sha256=jUfHQv33WP9yMXCLAKPmgKj3k9mCBHMna0Xg7hQJy8c,53825
|
352
352
|
ccxt/pro/bitcoincom.py,sha256=zAX6hiz4hS6Un8dSGp88rpnvItxQHfNmsfF0IZ2xIVA,1181
|
353
353
|
ccxt/pro/bitfinex.py,sha256=55-BovgmV3cHjys5GSRk36RiNQtGgW4NWPI1goRrDic,24890
|
@@ -542,7 +542,7 @@ ccxt/test/base/test_ticker.py,sha256=cMTIMb1oySNORUCmqI5ZzMswlEyCF6gJMah3vfvo8wQ
|
|
542
542
|
ccxt/test/base/test_trade.py,sha256=PMtmB8V38dpaP-eb8h488xYMlR6D69yCOhsA1RuWrUA,2336
|
543
543
|
ccxt/test/base/test_trading_fee.py,sha256=2aDCNJtqBkTC_AieO0l1HYGq5hz5qkWlkWb9Nv_fcwk,1066
|
544
544
|
ccxt/test/base/test_transaction.py,sha256=BTbB4UHHXkrvYgwbrhh867nVRlevmIkIrz1W_odlQJI,1434
|
545
|
-
ccxt-4.3.
|
546
|
-
ccxt-4.3.
|
547
|
-
ccxt-4.3.
|
548
|
-
ccxt-4.3.
|
545
|
+
ccxt-4.3.51.dist-info/METADATA,sha256=gMhdpYRcOdG51-ulgJZMK-iUG19N7lklf-Ksdqsj4dk,115226
|
546
|
+
ccxt-4.3.51.dist-info/WHEEL,sha256=P2T-6epvtXQ2cBOE_U1K4_noqlJFN3tj15djMgEu4NM,110
|
547
|
+
ccxt-4.3.51.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
548
|
+
ccxt-4.3.51.dist-info/RECORD,,
|
File without changes
|
File without changes
|