ccxt 4.3.11__py2.py3-none-any.whl → 4.3.13__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/bybit.py +1 -0
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/base/exchange.py +1 -1
- ccxt/async_support/bigone.py +22 -22
- ccxt/async_support/binance.py +7 -7
- ccxt/async_support/bingx.py +2 -2
- ccxt/async_support/bitget.py +10 -8
- ccxt/async_support/bitmart.py +7 -11
- ccxt/async_support/bitmex.py +2 -2
- ccxt/async_support/bybit.py +76 -65
- ccxt/async_support/coinbase.py +8 -8
- ccxt/async_support/coinbaseinternational.py +2 -2
- ccxt/async_support/coinex.py +501 -445
- ccxt/async_support/coinlist.py +12 -12
- ccxt/async_support/coinmetro.py +2 -2
- ccxt/async_support/cryptocom.py +16 -16
- ccxt/async_support/digifinex.py +3 -3
- ccxt/async_support/gate.py +2 -2
- ccxt/async_support/hitbtc.py +3 -3
- ccxt/async_support/htx.py +6 -9
- ccxt/async_support/indodax.py +2 -2
- ccxt/async_support/kraken.py +3 -1
- ccxt/async_support/kucoin.py +4 -4
- ccxt/async_support/kucoinfutures.py +6 -6
- ccxt/async_support/mexc.py +5 -5
- ccxt/async_support/okx.py +9 -9
- ccxt/async_support/poloniexfutures.py +4 -4
- ccxt/async_support/probit.py +2 -2
- ccxt/async_support/whitebit.py +72 -1
- ccxt/async_support/woo.py +2 -2
- ccxt/base/exchange.py +14 -2
- ccxt/base/types.py +25 -0
- ccxt/bigone.py +22 -22
- ccxt/binance.py +7 -7
- ccxt/bingx.py +2 -2
- ccxt/bitget.py +10 -8
- ccxt/bitmart.py +7 -11
- ccxt/bitmex.py +2 -2
- ccxt/bybit.py +76 -65
- ccxt/coinbase.py +8 -8
- ccxt/coinbaseinternational.py +2 -2
- ccxt/coinex.py +501 -445
- ccxt/coinlist.py +12 -12
- ccxt/coinmetro.py +2 -2
- ccxt/cryptocom.py +16 -16
- ccxt/digifinex.py +3 -3
- ccxt/gate.py +2 -2
- ccxt/hitbtc.py +3 -3
- ccxt/htx.py +6 -9
- ccxt/indodax.py +2 -2
- ccxt/kraken.py +3 -1
- ccxt/kucoin.py +4 -4
- ccxt/kucoinfutures.py +6 -6
- ccxt/mexc.py +5 -5
- ccxt/okx.py +9 -9
- ccxt/poloniexfutures.py +4 -4
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/bitget.py +139 -87
- ccxt/pro/bybit.py +192 -12
- ccxt/pro/coinbase.py +90 -20
- ccxt/pro/mexc.py +21 -1
- ccxt/probit.py +2 -2
- ccxt/test/base/test_datetime.py +6 -0
- ccxt/test/base/test_ledger_entry.py +2 -2
- ccxt/whitebit.py +72 -1
- ccxt/woo.py +2 -2
- {ccxt-4.3.11.dist-info → ccxt-4.3.13.dist-info}/METADATA +4 -4
- {ccxt-4.3.11.dist-info → ccxt-4.3.13.dist-info}/RECORD +71 -73
- ccxt/async_support/flowbtc.py +0 -34
- ccxt/flowbtc.py +0 -34
- {ccxt-4.3.11.dist-info → ccxt-4.3.13.dist-info}/WHEEL +0 -0
- {ccxt-4.3.11.dist-info → ccxt-4.3.13.dist-info}/top_level.txt +0 -0
ccxt/async_support/coinbase.py
CHANGED
@@ -3110,9 +3110,9 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3110
3110
|
request['limit'] = limit
|
3111
3111
|
if since is not None:
|
3112
3112
|
request['start_date'] = self.iso8601(since)
|
3113
|
-
until = self.safe_integer_n(params, ['until'
|
3113
|
+
until = self.safe_integer_n(params, ['until'])
|
3114
3114
|
if until is not None:
|
3115
|
-
params = self.omit(params, ['until'
|
3115
|
+
params = self.omit(params, ['until'])
|
3116
3116
|
request['end_date'] = self.iso8601(until)
|
3117
3117
|
response = await self.v3PrivateGetBrokerageOrdersHistoricalBatch(self.extend(request, params))
|
3118
3118
|
#
|
@@ -3180,9 +3180,9 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3180
3180
|
request['limit'] = limit
|
3181
3181
|
if since is not None:
|
3182
3182
|
request['start_date'] = self.iso8601(since)
|
3183
|
-
until = self.safe_integer_n(params, ['until'
|
3183
|
+
until = self.safe_integer_n(params, ['until'])
|
3184
3184
|
if until is not None:
|
3185
|
-
params = self.omit(params, ['until'
|
3185
|
+
params = self.omit(params, ['until'])
|
3186
3186
|
request['end_date'] = self.iso8601(until)
|
3187
3187
|
response = await self.v3PrivateGetBrokerageOrdersHistoricalBatch(self.extend(request, params))
|
3188
3188
|
#
|
@@ -3310,8 +3310,8 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3310
3310
|
'product_id': market['id'],
|
3311
3311
|
'granularity': self.safe_string(self.timeframes, timeframe, timeframe),
|
3312
3312
|
}
|
3313
|
-
until = self.safe_integer_n(params, ['until', '
|
3314
|
-
params = self.omit(params, ['until'
|
3313
|
+
until = self.safe_integer_n(params, ['until', 'end'])
|
3314
|
+
params = self.omit(params, ['until'])
|
3315
3315
|
duration = self.parse_timeframe(timeframe)
|
3316
3316
|
requestedDuration = limit * duration
|
3317
3317
|
sinceString = None
|
@@ -3438,9 +3438,9 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3438
3438
|
request['limit'] = limit
|
3439
3439
|
if since is not None:
|
3440
3440
|
request['start_sequence_timestamp'] = self.iso8601(since)
|
3441
|
-
until = self.safe_integer_n(params, ['until'
|
3441
|
+
until = self.safe_integer_n(params, ['until'])
|
3442
3442
|
if until is not None:
|
3443
|
-
params = self.omit(params, ['until'
|
3443
|
+
params = self.omit(params, ['until'])
|
3444
3444
|
request['end_sequence_timestamp'] = self.iso8601(until)
|
3445
3445
|
response = await self.v3PrivateGetBrokerageOrdersHistoricalFills(self.extend(request, params))
|
3446
3446
|
#
|
@@ -1725,9 +1725,9 @@ class coinbaseinternational(Exchange, ImplicitAPI):
|
|
1725
1725
|
request['result_limit'] = limit
|
1726
1726
|
if since is not None:
|
1727
1727
|
request['time_from'] = self.iso8601(since)
|
1728
|
-
until = self.safe_string_n(params, ['until'
|
1728
|
+
until = self.safe_string_n(params, ['until'])
|
1729
1729
|
if until is not None:
|
1730
|
-
params = self.omit(params, ['until'
|
1730
|
+
params = self.omit(params, ['until'])
|
1731
1731
|
request['ref_datetime'] = self.iso8601(until)
|
1732
1732
|
response = await self.v1PrivateGetPortfoliosFills(self.extend(request, params))
|
1733
1733
|
#
|