ccxt 4.3.54__py2.py3-none-any.whl → 4.3.56__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.
Potentially problematic release.
This version of ccxt might be problematic. Click here for more details.
- ccxt/__init__.py +1 -1
- ccxt/abstract/bingx.py +16 -0
- ccxt/abstract/kucoin.py +3 -0
- ccxt/abstract/kucoinfutures.py +3 -0
- ccxt/ace.py +1 -1
- ccxt/alpaca.py +1 -1
- ccxt/ascendex.py +6 -4
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/ace.py +1 -1
- ccxt/async_support/alpaca.py +1 -1
- ccxt/async_support/ascendex.py +6 -4
- ccxt/async_support/base/exchange.py +19 -3
- ccxt/async_support/bigone.py +1 -1
- ccxt/async_support/binance.py +13 -13
- ccxt/async_support/bingx.py +36 -3
- ccxt/async_support/bit2c.py +1 -1
- ccxt/async_support/bitbank.py +1 -1
- ccxt/async_support/bitbns.py +1 -1
- ccxt/async_support/bitfinex.py +1 -1
- ccxt/async_support/bitfinex2.py +1 -1
- ccxt/async_support/bitflyer.py +8 -2
- ccxt/async_support/bitget.py +2 -2
- ccxt/async_support/bithumb.py +1 -1
- ccxt/async_support/bitmart.py +3 -3
- ccxt/async_support/bitmex.py +1 -1
- ccxt/async_support/bitopro.py +19 -4
- ccxt/async_support/bitrue.py +1 -1
- ccxt/async_support/bitso.py +1 -1
- ccxt/async_support/bitstamp.py +1 -1
- ccxt/async_support/bitteam.py +1 -1
- ccxt/async_support/bitvavo.py +2 -2
- ccxt/async_support/bl3p.py +1 -1
- ccxt/async_support/blockchaincom.py +28 -28
- ccxt/async_support/blofin.py +1 -1
- ccxt/async_support/btcalpha.py +4 -11
- ccxt/async_support/btcbox.py +1 -1
- ccxt/async_support/btcmarkets.py +28 -27
- ccxt/async_support/btcturk.py +1 -1
- ccxt/async_support/bybit.py +10 -7
- ccxt/async_support/cex.py +2 -2
- ccxt/async_support/coinbase.py +33 -33
- ccxt/async_support/coinbaseexchange.py +1 -1
- ccxt/async_support/coinbaseinternational.py +1 -1
- ccxt/async_support/coincheck.py +1 -1
- ccxt/async_support/coinex.py +2 -2
- ccxt/async_support/coinlist.py +2 -2
- ccxt/async_support/coinmate.py +1 -1
- ccxt/async_support/coinmetro.py +1 -1
- ccxt/async_support/coinone.py +1 -1
- ccxt/async_support/coinsph.py +1 -1
- ccxt/async_support/coinspot.py +1 -1
- ccxt/async_support/cryptocom.py +1 -1
- ccxt/async_support/currencycom.py +1 -1
- ccxt/async_support/delta.py +7 -3
- ccxt/async_support/deribit.py +4 -4
- ccxt/async_support/digifinex.py +2 -2
- ccxt/async_support/exmo.py +2 -2
- ccxt/async_support/gate.py +3 -2
- ccxt/async_support/gemini.py +1 -1
- ccxt/async_support/hitbtc.py +1 -1
- ccxt/async_support/hollaex.py +1 -1
- ccxt/async_support/htx.py +3 -3
- ccxt/async_support/huobijp.py +1 -1
- ccxt/async_support/hyperliquid.py +3 -3
- ccxt/async_support/idex.py +1 -1
- ccxt/async_support/independentreserve.py +1 -1
- ccxt/async_support/indodax.py +1 -1
- ccxt/async_support/kraken.py +2 -2
- ccxt/async_support/kucoin.py +127 -46
- ccxt/async_support/kucoinfutures.py +1 -1
- ccxt/async_support/kuna.py +1 -1
- ccxt/async_support/latoken.py +1 -1
- ccxt/async_support/lbank.py +28 -7
- ccxt/async_support/luno.py +1 -1
- ccxt/async_support/lykke.py +1 -1
- ccxt/async_support/mercado.py +1 -1
- ccxt/async_support/mexc.py +1 -1
- ccxt/async_support/ndax.py +1 -1
- ccxt/async_support/novadax.py +1 -1
- ccxt/async_support/oceanex.py +1 -1
- ccxt/async_support/okcoin.py +1 -1
- ccxt/async_support/okx.py +3 -3
- ccxt/async_support/onetrading.py +1 -1
- ccxt/async_support/oxfun.py +2 -2
- ccxt/async_support/p2b.py +1 -1
- ccxt/async_support/paymium.py +1 -1
- ccxt/async_support/phemex.py +2 -2
- ccxt/async_support/poloniex.py +4 -3
- ccxt/async_support/poloniexfutures.py +1 -1
- ccxt/async_support/probit.py +1 -1
- ccxt/async_support/timex.py +1 -1
- ccxt/async_support/tokocrypto.py +1 -1
- ccxt/async_support/tradeogre.py +1 -1
- ccxt/async_support/upbit.py +1 -1
- ccxt/async_support/vertex.py +2 -2
- ccxt/async_support/wavesexchange.py +1 -1
- ccxt/async_support/wazirx.py +1 -1
- ccxt/async_support/whitebit.py +2 -2
- ccxt/async_support/woo.py +5 -5
- ccxt/async_support/woofipro.py +3 -3
- ccxt/async_support/yobit.py +1 -1
- ccxt/async_support/zaif.py +1 -1
- ccxt/async_support/zonda.py +1 -1
- ccxt/base/exchange.py +19 -3
- ccxt/base/types.py +4 -1
- ccxt/bigone.py +1 -1
- ccxt/binance.py +13 -13
- ccxt/bingx.py +36 -3
- ccxt/bit2c.py +1 -1
- ccxt/bitbank.py +1 -1
- ccxt/bitbns.py +1 -1
- ccxt/bitfinex.py +1 -1
- ccxt/bitfinex2.py +1 -1
- ccxt/bitflyer.py +8 -2
- ccxt/bitget.py +2 -2
- ccxt/bithumb.py +1 -1
- ccxt/bitmart.py +3 -3
- ccxt/bitmex.py +1 -1
- ccxt/bitopro.py +19 -4
- ccxt/bitrue.py +1 -1
- ccxt/bitso.py +1 -1
- ccxt/bitstamp.py +1 -1
- ccxt/bitteam.py +1 -1
- ccxt/bitvavo.py +2 -2
- ccxt/bl3p.py +1 -1
- ccxt/blockchaincom.py +28 -28
- ccxt/blofin.py +1 -1
- ccxt/btcalpha.py +4 -11
- ccxt/btcbox.py +1 -1
- ccxt/btcmarkets.py +28 -27
- ccxt/btcturk.py +1 -1
- ccxt/bybit.py +10 -7
- ccxt/cex.py +2 -2
- ccxt/coinbase.py +33 -33
- ccxt/coinbaseexchange.py +1 -1
- ccxt/coinbaseinternational.py +1 -1
- ccxt/coincheck.py +1 -1
- ccxt/coinex.py +2 -2
- ccxt/coinlist.py +2 -2
- ccxt/coinmate.py +1 -1
- ccxt/coinmetro.py +1 -1
- ccxt/coinone.py +1 -1
- ccxt/coinsph.py +1 -1
- ccxt/coinspot.py +1 -1
- ccxt/cryptocom.py +1 -1
- ccxt/currencycom.py +1 -1
- ccxt/delta.py +7 -3
- ccxt/deribit.py +4 -4
- ccxt/digifinex.py +2 -2
- ccxt/exmo.py +2 -2
- ccxt/gate.py +3 -2
- ccxt/gemini.py +1 -1
- ccxt/hitbtc.py +1 -1
- ccxt/hollaex.py +1 -1
- ccxt/htx.py +3 -3
- ccxt/huobijp.py +1 -1
- ccxt/hyperliquid.py +3 -3
- ccxt/idex.py +1 -1
- ccxt/independentreserve.py +1 -1
- ccxt/indodax.py +1 -1
- ccxt/kraken.py +2 -2
- ccxt/kucoin.py +127 -46
- ccxt/kucoinfutures.py +1 -1
- ccxt/kuna.py +1 -1
- ccxt/latoken.py +1 -1
- ccxt/lbank.py +28 -7
- ccxt/luno.py +1 -1
- ccxt/lykke.py +1 -1
- ccxt/mercado.py +1 -1
- ccxt/mexc.py +1 -1
- ccxt/ndax.py +1 -1
- ccxt/novadax.py +1 -1
- ccxt/oceanex.py +1 -1
- ccxt/okcoin.py +1 -1
- ccxt/okx.py +3 -3
- ccxt/onetrading.py +1 -1
- ccxt/oxfun.py +2 -2
- ccxt/p2b.py +1 -1
- ccxt/paymium.py +1 -1
- ccxt/phemex.py +2 -2
- ccxt/poloniex.py +4 -3
- ccxt/poloniexfutures.py +1 -1
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/binance.py +2 -2
- ccxt/pro/bitvavo.py +2 -2
- ccxt/pro/bybit.py +2 -2
- ccxt/pro/cex.py +3 -3
- ccxt/pro/coinbase.py +22 -1
- ccxt/pro/cryptocom.py +1 -1
- ccxt/pro/gate.py +2 -2
- ccxt/pro/hitbtc.py +1 -1
- ccxt/pro/kraken.py +2 -2
- ccxt/pro/kucoin.py +2 -2
- ccxt/pro/okx.py +2 -2
- ccxt/pro/oxfun.py +2 -2
- ccxt/pro/poloniex.py +1 -1
- ccxt/pro/vertex.py +1 -1
- ccxt/probit.py +1 -1
- ccxt/test/{test_async.py → tests_async.py} +27 -280
- ccxt/test/tests_helpers.py +284 -0
- ccxt/test/tests_init.py +35 -0
- ccxt/test/{test_sync.py → tests_sync.py} +27 -282
- ccxt/timex.py +1 -1
- ccxt/tokocrypto.py +1 -1
- ccxt/tradeogre.py +1 -1
- ccxt/upbit.py +1 -1
- ccxt/vertex.py +2 -2
- ccxt/wavesexchange.py +1 -1
- ccxt/wazirx.py +1 -1
- ccxt/whitebit.py +2 -2
- ccxt/woo.py +5 -5
- ccxt/woofipro.py +3 -3
- ccxt/yobit.py +1 -1
- ccxt/zaif.py +1 -1
- ccxt/zonda.py +1 -1
- {ccxt-4.3.54.dist-info → ccxt-4.3.56.dist-info}/METADATA +5 -7
- {ccxt-4.3.54.dist-info → ccxt-4.3.56.dist-info}/RECORD +220 -253
- ccxt/test/base/__init__.py +0 -29
- ccxt/test/base/test_account.py +0 -26
- ccxt/test/base/test_balance.py +0 -56
- ccxt/test/base/test_borrow_interest.py +0 -35
- ccxt/test/base/test_borrow_rate.py +0 -32
- ccxt/test/base/test_calculate_fee.py +0 -51
- ccxt/test/base/test_crypto.py +0 -127
- ccxt/test/base/test_currency.py +0 -76
- ccxt/test/base/test_datetime.py +0 -109
- ccxt/test/base/test_decimal_to_precision.py +0 -392
- ccxt/test/base/test_deep_extend.py +0 -68
- ccxt/test/base/test_deposit_withdrawal.py +0 -50
- ccxt/test/base/test_exchange_datetime_functions.py +0 -76
- ccxt/test/base/test_funding_rate_history.py +0 -29
- ccxt/test/base/test_last_price.py +0 -31
- ccxt/test/base/test_ledger_entry.py +0 -45
- ccxt/test/base/test_ledger_item.py +0 -48
- ccxt/test/base/test_leverage_tier.py +0 -33
- ccxt/test/base/test_liquidation.py +0 -50
- ccxt/test/base/test_margin_mode.py +0 -24
- ccxt/test/base/test_margin_modification.py +0 -35
- ccxt/test/base/test_market.py +0 -193
- ccxt/test/base/test_number.py +0 -411
- ccxt/test/base/test_ohlcv.py +0 -33
- ccxt/test/base/test_open_interest.py +0 -32
- ccxt/test/base/test_order.py +0 -64
- ccxt/test/base/test_order_book.py +0 -69
- ccxt/test/base/test_position.py +0 -60
- ccxt/test/base/test_shared_methods.py +0 -353
- ccxt/test/base/test_status.py +0 -24
- ccxt/test/base/test_throttle.py +0 -126
- ccxt/test/base/test_ticker.py +0 -92
- ccxt/test/base/test_trade.py +0 -47
- ccxt/test/base/test_trading_fee.py +0 -26
- ccxt/test/base/test_transaction.py +0 -39
- {ccxt-4.3.54.dist-info → ccxt-4.3.56.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.3.54.dist-info → ccxt-4.3.56.dist-info}/WHEEL +0 -0
- {ccxt-4.3.54.dist-info → ccxt-4.3.56.dist-info}/top_level.txt +0 -0
ccxt/bybit.py
CHANGED
@@ -2921,14 +2921,17 @@ class bybit(Exchange, ImplicitAPI):
|
|
2921
2921
|
enableUnifiedMargin, enableUnifiedAccount = self.is_unified_enabled()
|
2922
2922
|
isUnifiedAccount = (enableUnifiedMargin or enableUnifiedAccount)
|
2923
2923
|
type = None
|
2924
|
-
type, params = self.
|
2924
|
+
type, params = self.get_bybit_type('fetchBalance', None, params)
|
2925
2925
|
isSpot = (type == 'spot')
|
2926
|
-
|
2926
|
+
isLinear = (type == 'linear')
|
2927
|
+
isInverse = (type == 'inverse')
|
2927
2928
|
if isUnifiedAccount:
|
2928
|
-
if
|
2929
|
+
if isInverse:
|
2930
|
+
type = 'contract'
|
2931
|
+
else:
|
2929
2932
|
type = 'unified'
|
2930
2933
|
else:
|
2931
|
-
if
|
2934
|
+
if isLinear or isInverse:
|
2932
2935
|
type = 'contract'
|
2933
2936
|
accountTypes = self.safe_dict(self.options, 'accountsByType', {})
|
2934
2937
|
unifiedType = self.safe_string_upper(accountTypes, type, type)
|
@@ -3231,7 +3234,7 @@ class bybit(Exchange, ImplicitAPI):
|
|
3231
3234
|
else:
|
3232
3235
|
feeCurrencyCode = market['base'] if market['inverse'] else market['settle']
|
3233
3236
|
fee = {
|
3234
|
-
'cost': feeCostString,
|
3237
|
+
'cost': self.parse_number(feeCostString),
|
3235
3238
|
'currency': feeCurrencyCode,
|
3236
3239
|
}
|
3237
3240
|
clientOrderId = self.safe_string(order, 'orderLinkId')
|
@@ -3335,7 +3338,7 @@ class bybit(Exchange, ImplicitAPI):
|
|
3335
3338
|
:param str type: 'market' or 'limit'
|
3336
3339
|
:param str side: 'buy' or 'sell'
|
3337
3340
|
:param float amount: how much of currency you want to trade in units of base currency
|
3338
|
-
:param float [price]: the price at which the order is to be
|
3341
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
3339
3342
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
3340
3343
|
:param str [params.timeInForce]: "GTC", "IOC", "FOK"
|
3341
3344
|
:param bool [params.postOnly]: True or False whether the order is post-only
|
@@ -3892,7 +3895,7 @@ class bybit(Exchange, ImplicitAPI):
|
|
3892
3895
|
:param str type: 'market' or 'limit'
|
3893
3896
|
:param str side: 'buy' or 'sell'
|
3894
3897
|
:param float amount: how much of currency you want to trade in units of base currency
|
3895
|
-
:param float price: the price at which the order is to be
|
3898
|
+
:param float price: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
3896
3899
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
3897
3900
|
:param float [params.triggerPrice]: The price that a trigger order is triggered at
|
3898
3901
|
:param float [params.stopLossPrice]: The price that a stop loss order is triggered at
|
ccxt/cex.py
CHANGED
@@ -735,7 +735,7 @@ class cex(Exchange, ImplicitAPI):
|
|
735
735
|
:param str type: 'market' or 'limit'
|
736
736
|
:param str side: 'buy' or 'sell'
|
737
737
|
:param float amount: how much of currency you want to trade in units of base currency
|
738
|
-
:param float [price]: the price at which the order is to be
|
738
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
739
739
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
740
740
|
:param float [params.cost]: the quote quantity that can be used alternative for the amount for market buy orders
|
741
741
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
@@ -1489,7 +1489,7 @@ class cex(Exchange, ImplicitAPI):
|
|
1489
1489
|
:param str type: 'market' or 'limit'
|
1490
1490
|
:param str side: 'buy' or 'sell'
|
1491
1491
|
:param float amount: how much of the currency you want to trade in units of the base currency
|
1492
|
-
:param float|None [price]: the price at which the order is to be
|
1492
|
+
:param float|None [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1493
1493
|
:param dict [params]: extra parameters specific to the cex api endpoint
|
1494
1494
|
:returns dict: an `order structure <https://docs.ccxt.com/en/latest/manual.html#order-structure>`
|
1495
1495
|
"""
|
ccxt/coinbase.py
CHANGED
@@ -32,7 +32,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
32
32
|
'pro': True,
|
33
33
|
'certified': True,
|
34
34
|
# rate-limits:
|
35
|
-
# ADVANCED API: https://docs.cloud.coinbase.com/advanced-trade
|
35
|
+
# ADVANCED API: https://docs.cloud.coinbase.com/advanced-trade/docs/rest-api-rate-limits
|
36
36
|
# - max 30 req/second for private data, 10 req/s for public data
|
37
37
|
# DATA API : https://docs.cloud.coinbase.com/sign-in-with-coinbase/docs/rate-limiting
|
38
38
|
# - max 10000 req/hour(to prevent userland mistakes we apply ~3 req/second RL per call
|
@@ -138,7 +138,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
138
138
|
'www': 'https://www.coinbase.com',
|
139
139
|
'doc': [
|
140
140
|
'https://developers.coinbase.com/api/v2',
|
141
|
-
'https://docs.cloud.coinbase.com/advanced-trade
|
141
|
+
'https://docs.cloud.coinbase.com/advanced-trade/docs/welcome',
|
142
142
|
],
|
143
143
|
'fees': [
|
144
144
|
'https://support.coinbase.com/customer/portal/articles/2109597-buy-sell-bank-transfer-fees',
|
@@ -420,7 +420,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
420
420
|
def fetch_accounts(self, params={}) -> List[Account]:
|
421
421
|
"""
|
422
422
|
fetch all the accounts associated with a profile
|
423
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
423
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getaccounts
|
424
424
|
:see: https://docs.cloud.coinbase.com/sign-in-with-coinbase/docs/api-accounts#list-accounts
|
425
425
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
426
426
|
:param boolean [params.paginate]: default False, when True will automatically paginate by calling self endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
@@ -550,7 +550,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
550
550
|
def fetch_portfolios(self, params={}) -> List[Account]:
|
551
551
|
"""
|
552
552
|
fetch all the portfolios
|
553
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
553
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getportfolios
|
554
554
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
555
555
|
:returns dict: a dictionary of `account structures <https://docs.ccxt.com/#/?id=account-structure>` indexed by the account type
|
556
556
|
"""
|
@@ -1069,7 +1069,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
1069
1069
|
|
1070
1070
|
def fetch_markets(self, params={}) -> List[Market]:
|
1071
1071
|
"""
|
1072
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
1072
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getpublicproducts
|
1073
1073
|
:see: https://docs.cloud.coinbase.com/sign-in-with-coinbase/docs/api-currencies#get-fiat-currencies
|
1074
1074
|
:see: https://docs.cloud.coinbase.com/sign-in-with-coinbase/docs/api-exchange-rates#get-exchange-rates
|
1075
1075
|
retrieves data on all markets for coinbase
|
@@ -1709,7 +1709,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
1709
1709
|
def fetch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
1710
1710
|
"""
|
1711
1711
|
fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
|
1712
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
1712
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getproducts
|
1713
1713
|
:see: https://docs.cloud.coinbase.com/sign-in-with-coinbase/docs/api-exchange-rates#get-exchange-rates
|
1714
1714
|
:param str[]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
|
1715
1715
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -1821,7 +1821,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
1821
1821
|
def fetch_ticker(self, symbol: str, params={}) -> Ticker:
|
1822
1822
|
"""
|
1823
1823
|
fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
1824
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
1824
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getmarkettrades
|
1825
1825
|
:see: https://docs.cloud.coinbase.com/sign-in-with-coinbase/docs/api-prices#get-spot-price
|
1826
1826
|
:see: https://docs.cloud.coinbase.com/sign-in-with-coinbase/docs/api-prices#get-buy-price
|
1827
1827
|
:see: https://docs.cloud.coinbase.com/sign-in-with-coinbase/docs/api-prices#get-sell-price
|
@@ -2068,9 +2068,9 @@ class coinbase(Exchange, ImplicitAPI):
|
|
2068
2068
|
def fetch_balance(self, params={}) -> Balances:
|
2069
2069
|
"""
|
2070
2070
|
query for balance and get the amount of funds available for trading or funds locked in orders
|
2071
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
2071
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getaccounts
|
2072
2072
|
:see: https://docs.cloud.coinbase.com/sign-in-with-coinbase/docs/api-accounts#list-accounts
|
2073
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
2073
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getfcmbalancesummary
|
2074
2074
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
2075
2075
|
:param boolean [params.v3]: default False, set True to use v3 api endpoint
|
2076
2076
|
:param dict [params.type]: "spot"(default) or "swap" or "future"
|
@@ -2567,7 +2567,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
2567
2567
|
def create_market_buy_order_with_cost(self, symbol: str, cost: float, params={}):
|
2568
2568
|
"""
|
2569
2569
|
create a market buy order by providing the symbol and cost
|
2570
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
2570
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_postorder
|
2571
2571
|
:param str symbol: unified symbol of the market to create an order in
|
2572
2572
|
:param float cost: how much you want to trade in units of the quote currency
|
2573
2573
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -2583,7 +2583,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
2583
2583
|
def create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={}):
|
2584
2584
|
"""
|
2585
2585
|
create a trade order
|
2586
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
2586
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_postorder
|
2587
2587
|
:param str symbol: unified symbol of the market to create an order in
|
2588
2588
|
:param str type: 'market' or 'limit'
|
2589
2589
|
:param str side: 'buy' or 'sell'
|
@@ -2965,7 +2965,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
2965
2965
|
def cancel_order(self, id: str, symbol: Str = None, params={}):
|
2966
2966
|
"""
|
2967
2967
|
cancels an open order
|
2968
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
2968
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_cancelorders
|
2969
2969
|
:param str id: order id
|
2970
2970
|
:param str symbol: not used by coinbase cancelOrder()
|
2971
2971
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -2978,7 +2978,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
2978
2978
|
def cancel_orders(self, ids, symbol: Str = None, params={}):
|
2979
2979
|
"""
|
2980
2980
|
cancel multiple orders
|
2981
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
2981
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_cancelorders
|
2982
2982
|
:param str[] ids: order ids
|
2983
2983
|
:param str symbol: not used by coinbase cancelOrders()
|
2984
2984
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -3013,13 +3013,13 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3013
3013
|
def edit_order(self, id: str, symbol: str, type: OrderType, side: OrderSide, amount: Num = None, price: Num = None, params={}):
|
3014
3014
|
"""
|
3015
3015
|
edit a trade order
|
3016
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
3016
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_editorder
|
3017
3017
|
:param str id: cancel order id
|
3018
3018
|
:param str symbol: unified symbol of the market to create an order in
|
3019
3019
|
:param str type: 'market' or 'limit'
|
3020
3020
|
:param str side: 'buy' or 'sell'
|
3021
3021
|
:param float amount: how much of currency you want to trade in units of base currency
|
3022
|
-
:param float [price]: the price at which the order is to be
|
3022
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
3023
3023
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
3024
3024
|
:param boolean [params.preview]: default to False, wether to use the test/preview endpoint or not
|
3025
3025
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
@@ -3054,7 +3054,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3054
3054
|
def fetch_order(self, id: str, symbol: Str = None, params={}):
|
3055
3055
|
"""
|
3056
3056
|
fetches information on an order made by the user
|
3057
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
3057
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_gethistoricalorder
|
3058
3058
|
:param str id: the order id
|
3059
3059
|
:param str symbol: unified market symbol that the order was made in
|
3060
3060
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -3113,7 +3113,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3113
3113
|
def fetch_orders(self, symbol: Str = None, since: Int = None, limit: Int = 100, params={}) -> List[Order]:
|
3114
3114
|
"""
|
3115
3115
|
fetches information on multiple orders made by the user
|
3116
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
3116
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_gethistoricalorders
|
3117
3117
|
:param str symbol: unified market symbol that the orders were made in
|
3118
3118
|
:param int [since]: the earliest time in ms to fetch orders
|
3119
3119
|
:param int [limit]: the maximum number of order structures to retrieve
|
@@ -3265,7 +3265,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3265
3265
|
def fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
3266
3266
|
"""
|
3267
3267
|
fetches information on all currently open orders
|
3268
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
3268
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_gethistoricalorders
|
3269
3269
|
:param str symbol: unified market symbol of the orders
|
3270
3270
|
:param int [since]: timestamp in ms of the earliest order, default is None
|
3271
3271
|
:param int [limit]: the maximum number of open order structures to retrieve
|
@@ -3284,7 +3284,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3284
3284
|
def fetch_closed_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
3285
3285
|
"""
|
3286
3286
|
fetches information on multiple closed orders made by the user
|
3287
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
3287
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_gethistoricalorders
|
3288
3288
|
:param str symbol: unified market symbol of the orders
|
3289
3289
|
:param int [since]: timestamp in ms of the earliest order, default is None
|
3290
3290
|
:param int [limit]: the maximum number of closed order structures to retrieve
|
@@ -3303,7 +3303,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3303
3303
|
def fetch_canceled_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
|
3304
3304
|
"""
|
3305
3305
|
fetches information on multiple canceled orders made by the user
|
3306
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
3306
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_gethistoricalorders
|
3307
3307
|
:param str symbol: unified market symbol of the orders
|
3308
3308
|
:param int [since]: timestamp in ms of the earliest order, default is None
|
3309
3309
|
:param int [limit]: the maximum number of canceled order structures to retrieve
|
@@ -3315,7 +3315,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3315
3315
|
def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
|
3316
3316
|
"""
|
3317
3317
|
fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
3318
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
3318
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getpubliccandles
|
3319
3319
|
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
3320
3320
|
:param str timeframe: the length of time each candle represents
|
3321
3321
|
:param int [since]: timestamp in ms of the earliest candle to fetch
|
@@ -3403,7 +3403,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3403
3403
|
def fetch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
3404
3404
|
"""
|
3405
3405
|
get the list of most recent trades for a particular symbol
|
3406
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
3406
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getpublicmarkettrades
|
3407
3407
|
:param str symbol: unified market symbol of the trades
|
3408
3408
|
:param int [since]: not used by coinbase fetchTrades
|
3409
3409
|
:param int [limit]: the maximum number of trade structures to fetch
|
@@ -3455,7 +3455,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3455
3455
|
def fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
|
3456
3456
|
"""
|
3457
3457
|
fetch all trades made by the user
|
3458
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
3458
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getfills
|
3459
3459
|
:param str symbol: unified market symbol of the trades
|
3460
3460
|
:param int [since]: timestamp in ms of the earliest order, default is None
|
3461
3461
|
:param int [limit]: the maximum number of trade structures to fetch
|
@@ -3518,7 +3518,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3518
3518
|
def fetch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
|
3519
3519
|
"""
|
3520
3520
|
fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
3521
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
3521
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getpublicproductbook
|
3522
3522
|
:param str symbol: unified symbol of the market to fetch the order book for
|
3523
3523
|
:param int [limit]: the maximum amount of order book entries to return
|
3524
3524
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -3567,7 +3567,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3567
3567
|
def fetch_bids_asks(self, symbols: Strings = None, params={}):
|
3568
3568
|
"""
|
3569
3569
|
fetches the bid and ask price and volume for multiple markets
|
3570
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
3570
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getbestbidask
|
3571
3571
|
:param str[] [symbols]: unified symbols of the markets to fetch the bids and asks for, all markets are returned if not assigned
|
3572
3572
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
3573
3573
|
:returns dict: a dictionary of `ticker structures <https://docs.ccxt.com/#/?id=ticker-structure>`
|
@@ -3955,7 +3955,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3955
3955
|
def fetch_convert_quote(self, fromCode: str, toCode: str, amount: Num = None, params={}) -> Conversion:
|
3956
3956
|
"""
|
3957
3957
|
fetch a quote for converting from one currency to another
|
3958
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
3958
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_createconvertquote
|
3959
3959
|
:param str fromCode: the currency that you want to sell and convert from
|
3960
3960
|
:param str toCode: the currency that you want to buy and convert into
|
3961
3961
|
:param float [amount]: how much you want to trade in units of the from currency
|
@@ -3978,7 +3978,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3978
3978
|
def create_convert_trade(self, id: str, fromCode: str, toCode: str, amount: Num = None, params={}) -> Conversion:
|
3979
3979
|
"""
|
3980
3980
|
convert from one currency to another
|
3981
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
3981
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_commitconverttrade
|
3982
3982
|
:param str id: the id of the trade that you want to make
|
3983
3983
|
:param str fromCode: the currency that you want to sell and convert from
|
3984
3984
|
:param str toCode: the currency that you want to buy and convert into
|
@@ -3999,7 +3999,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
3999
3999
|
def fetch_convert_trade(self, id: str, code: Str = None, params={}) -> Conversion:
|
4000
4000
|
"""
|
4001
4001
|
fetch the data for a conversion trade
|
4002
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
4002
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getconverttrade
|
4003
4003
|
:param str id: the id of the trade that you want to commit
|
4004
4004
|
:param str code: the unified currency code that was converted from
|
4005
4005
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -4073,8 +4073,8 @@ class coinbase(Exchange, ImplicitAPI):
|
|
4073
4073
|
def fetch_positions(self, symbols: Strings = None, params={}):
|
4074
4074
|
"""
|
4075
4075
|
fetch all open positions
|
4076
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
4077
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
4076
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getfcmpositions
|
4077
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getintxpositions
|
4078
4078
|
:param str[] [symbols]: list of unified market symbols
|
4079
4079
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
4080
4080
|
:param str [params.portfolio]: the portfolio UUID to fetch positions for
|
@@ -4105,8 +4105,8 @@ class coinbase(Exchange, ImplicitAPI):
|
|
4105
4105
|
def fetch_position(self, symbol: str, params={}):
|
4106
4106
|
"""
|
4107
4107
|
fetch data on a single open contract trade position
|
4108
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
4109
|
-
:see: https://docs.cloud.coinbase.com/advanced-trade
|
4108
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getintxposition
|
4109
|
+
:see: https://docs.cloud.coinbase.com/advanced-trade/reference/retailbrokerageapi_getfcmposition
|
4110
4110
|
:param str symbol: unified market symbol of the market the position is held in, default is None
|
4111
4111
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
4112
4112
|
:param str [params.product_id]: *futures only* the product id of the position to fetch, required for futures markets only
|
@@ -4385,7 +4385,7 @@ class coinbase(Exchange, ImplicitAPI):
|
|
4385
4385
|
if query:
|
4386
4386
|
payload += '?' + self.urlencode(query)
|
4387
4387
|
# v3: 'GET' doesn't need payload in the signature. inside url is enough
|
4388
|
-
# https://docs.cloud.coinbase.com/advanced-trade
|
4388
|
+
# https://docs.cloud.coinbase.com/advanced-trade/docs/auth#example-request
|
4389
4389
|
# v2: 'GET' require payload in the signature
|
4390
4390
|
# https://docs.cloud.coinbase.com/sign-in-with-coinbase/docs/api-key-authentication
|
4391
4391
|
isCloudAPiKey = (self.apiKey.find('organizations/') >= 0) or (self.secret.startswith('-----BEGIN'))
|
ccxt/coinbaseexchange.py
CHANGED
@@ -1158,7 +1158,7 @@ class coinbaseexchange(Exchange, ImplicitAPI):
|
|
1158
1158
|
:param str type: 'market' or 'limit'
|
1159
1159
|
:param str side: 'buy' or 'sell'
|
1160
1160
|
:param float amount: how much of currency you want to trade in units of base currency
|
1161
|
-
:param float [price]: the price at which the order is to be
|
1161
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1162
1162
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1163
1163
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
1164
1164
|
"""
|
ccxt/coinbaseinternational.py
CHANGED
@@ -1542,7 +1542,7 @@ class coinbaseinternational(Exchange, ImplicitAPI):
|
|
1542
1542
|
:param str type: 'market' or 'limit'
|
1543
1543
|
:param str side: 'buy' or 'sell'
|
1544
1544
|
:param float amount: how much of currency you want to trade in units of base currency
|
1545
|
-
:param float [price]: the price at which the order is to be
|
1545
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1546
1546
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1547
1547
|
:param str params['clientOrderId']: client order id
|
1548
1548
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
ccxt/coincheck.py
CHANGED
@@ -558,7 +558,7 @@ class coincheck(Exchange, ImplicitAPI):
|
|
558
558
|
:param str type: 'market' or 'limit'
|
559
559
|
:param str side: 'buy' or 'sell'
|
560
560
|
:param float amount: how much of currency you want to trade in units of base currency
|
561
|
-
:param float [price]: the price at which the order is to be
|
561
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
562
562
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
563
563
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
564
564
|
"""
|
ccxt/coinex.py
CHANGED
@@ -2031,7 +2031,7 @@ class coinex(Exchange, ImplicitAPI):
|
|
2031
2031
|
:param str type: 'market' or 'limit'
|
2032
2032
|
:param str side: 'buy' or 'sell'
|
2033
2033
|
:param float amount: how much you want to trade in units of the base currency
|
2034
|
-
:param float [price]: the price at which the order is to be
|
2034
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
2035
2035
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
2036
2036
|
:param float [params.triggerPrice]: price to trigger stop orders
|
2037
2037
|
:param float [params.stopLossPrice]: price to trigger stop loss orders
|
@@ -2621,7 +2621,7 @@ class coinex(Exchange, ImplicitAPI):
|
|
2621
2621
|
:param str type: 'market' or 'limit'
|
2622
2622
|
:param str side: 'buy' or 'sell'
|
2623
2623
|
:param float amount: how much of the currency you want to trade in units of the base currency
|
2624
|
-
:param float [price]: the price at which the order is to be
|
2624
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
2625
2625
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
2626
2626
|
:param float [params.triggerPrice]: the price to trigger stop orders
|
2627
2627
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
ccxt/coinlist.py
CHANGED
@@ -1425,7 +1425,7 @@ class coinlist(Exchange, ImplicitAPI):
|
|
1425
1425
|
:param str type: 'market' or 'limit' or 'stop_market' or 'stop_limit' or 'take_market' or 'take_limit'
|
1426
1426
|
:param str side: 'buy' or 'sell'
|
1427
1427
|
:param float amount: how much of currency you want to trade in units of base currency
|
1428
|
-
:param float [price]: the price at which the order is to be
|
1428
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1429
1429
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1430
1430
|
:param bool [params.postOnly]: if True, the order will only be posted to the order book and not executed immediately(default False)
|
1431
1431
|
:param float [params.triggerPrice]: only for the 'stop_market', 'stop_limit', 'take_market' or 'take_limit' orders(the price at which an order is triggered)
|
@@ -1491,7 +1491,7 @@ class coinlist(Exchange, ImplicitAPI):
|
|
1491
1491
|
:param str type: 'market' or 'limit' or 'stop_market' or 'stop_limit' or 'take_market' or 'take_limit'
|
1492
1492
|
:param str side: 'buy' or 'sell'
|
1493
1493
|
:param float amount: how much of currency you want to trade in units of base currency
|
1494
|
-
:param float [price]: the price at which the order is to be
|
1494
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1495
1495
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1496
1496
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
1497
1497
|
"""
|
ccxt/coinmate.py
CHANGED
@@ -951,7 +951,7 @@ class coinmate(Exchange, ImplicitAPI):
|
|
951
951
|
:param str type: 'market' or 'limit'
|
952
952
|
:param str side: 'buy' or 'sell'
|
953
953
|
:param float amount: how much of currency you want to trade in units of base currency
|
954
|
-
:param float [price]: the price at which the order is to be
|
954
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
955
955
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
956
956
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
957
957
|
"""
|
ccxt/coinmetro.py
CHANGED
@@ -1140,7 +1140,7 @@ class coinmetro(Exchange, ImplicitAPI):
|
|
1140
1140
|
:param str type: 'market' or 'limit'
|
1141
1141
|
:param str side: 'buy' or 'sell'
|
1142
1142
|
:param float amount: how much of currency you want to trade in units of base currency
|
1143
|
-
:param float [price]: the price at which the order is to be
|
1143
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1144
1144
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1145
1145
|
:param float [params.cost]: the quote quantity that can be used alternative for the amount in market orders
|
1146
1146
|
:param str [params.timeInForce]: "GTC", "IOC", "FOK", "GTD"
|
ccxt/coinone.py
CHANGED
@@ -729,7 +729,7 @@ class coinone(Exchange, ImplicitAPI):
|
|
729
729
|
:param str type: must be 'limit'
|
730
730
|
:param str side: 'buy' or 'sell'
|
731
731
|
:param float amount: how much of currency you want to trade in units of base currency
|
732
|
-
:param float [price]: the price at which the order is to be
|
732
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
733
733
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
734
734
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
735
735
|
"""
|
ccxt/coinsph.py
CHANGED
@@ -1066,7 +1066,7 @@ class coinsph(Exchange, ImplicitAPI):
|
|
1066
1066
|
:param str type: 'market', 'limit', 'stop_loss', 'take_profit', 'stop_loss_limit', 'take_profit_limit' or 'limit_maker'
|
1067
1067
|
:param str side: 'buy' or 'sell'
|
1068
1068
|
:param float amount: how much of currency you want to trade in units of base currency
|
1069
|
-
:param float [price]: the price at which the order is to be
|
1069
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1070
1070
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1071
1071
|
:param float [params.cost]: the quote quantity that can be used alternative for the amount for market buy orders
|
1072
1072
|
:param bool [params.test]: set to True to test an order, no order will be created but the request will be validated
|
ccxt/coinspot.py
CHANGED
@@ -475,7 +475,7 @@ class coinspot(Exchange, ImplicitAPI):
|
|
475
475
|
:param str type: must be 'limit'
|
476
476
|
:param str side: 'buy' or 'sell'
|
477
477
|
:param float amount: how much of currency you want to trade in units of base currency
|
478
|
-
:param float [price]: the price at which the order is to be
|
478
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
479
479
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
480
480
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
481
481
|
"""
|
ccxt/cryptocom.py
CHANGED
@@ -1084,7 +1084,7 @@ class cryptocom(Exchange, ImplicitAPI):
|
|
1084
1084
|
:param str type: 'market', 'limit', 'stop_loss', 'stop_limit', 'take_profit', 'take_profit_limit'
|
1085
1085
|
:param str side: 'buy' or 'sell'
|
1086
1086
|
:param float amount: how much you want to trade in units of base currency
|
1087
|
-
:param float [price]: the price at which the order is to be
|
1087
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1088
1088
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1089
1089
|
:param str [params.timeInForce]: 'GTC', 'IOC', 'FOK' or 'PO'
|
1090
1090
|
:param str [params.ref_price_type]: 'MARK_PRICE', 'INDEX_PRICE', 'LAST_PRICE' which trigger price type to use, default is MARK_PRICE
|
ccxt/currencycom.py
CHANGED
@@ -1239,7 +1239,7 @@ class currencycom(Exchange, ImplicitAPI):
|
|
1239
1239
|
:param str type: 'market' or 'limit'
|
1240
1240
|
:param str side: 'buy' or 'sell'
|
1241
1241
|
:param float amount: how much of currency you want to trade in units of base currency
|
1242
|
-
:param float [price]: the price at which the order is to be
|
1242
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1243
1243
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1244
1244
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
1245
1245
|
"""
|
ccxt/delta.py
CHANGED
@@ -1750,7 +1750,7 @@ class delta(Exchange, ImplicitAPI):
|
|
1750
1750
|
:param str type: 'market' or 'limit'
|
1751
1751
|
:param str side: 'buy' or 'sell'
|
1752
1752
|
:param float amount: how much of currency you want to trade in units of base currency
|
1753
|
-
:param float [price]: the price at which the order is to be
|
1753
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1754
1754
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1755
1755
|
:param bool [params.reduceOnly]: *contract only* indicates if self order is to reduce the size of a position
|
1756
1756
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
@@ -1828,7 +1828,7 @@ class delta(Exchange, ImplicitAPI):
|
|
1828
1828
|
:param str type: 'market' or 'limit'
|
1829
1829
|
:param str side: 'buy' or 'sell'
|
1830
1830
|
:param float amount: how much of the currency you want to trade in units of the base currency
|
1831
|
-
:param float [price]: the price at which the order is to be
|
1831
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency
|
1832
1832
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1833
1833
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
1834
1834
|
"""
|
@@ -1946,7 +1946,11 @@ class delta(Exchange, ImplicitAPI):
|
|
1946
1946
|
# "success":true
|
1947
1947
|
# }
|
1948
1948
|
#
|
1949
|
-
return
|
1949
|
+
return [
|
1950
|
+
self.safe_order({
|
1951
|
+
'info': response,
|
1952
|
+
}),
|
1953
|
+
]
|
1950
1954
|
|
1951
1955
|
def fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
1952
1956
|
"""
|
ccxt/deribit.py
CHANGED
@@ -1798,8 +1798,8 @@ class deribit(Exchange, ImplicitAPI):
|
|
1798
1798
|
:param str symbol: unified symbol of the market to create an order in
|
1799
1799
|
:param str type: 'market' or 'limit'
|
1800
1800
|
:param str side: 'buy' or 'sell'
|
1801
|
-
:param float amount: how much you want to trade in units of the base currency. For
|
1802
|
-
:param float [price]: the price at which the order is to be
|
1801
|
+
:param float amount: how much you want to trade in units of the base currency. For perpetual and inverse futures the amount is in USD units. For options it is in the underlying assets base currency.
|
1802
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1803
1803
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1804
1804
|
:param str [params.trigger]: the trigger type 'index_price', 'mark_price', or 'last_price', default is 'last_price'
|
1805
1805
|
:param float [params.trailingAmount]: the quote amount to trail away from the current market price
|
@@ -1955,8 +1955,8 @@ class deribit(Exchange, ImplicitAPI):
|
|
1955
1955
|
:param str [symbol]: unified symbol of the market to edit an order in
|
1956
1956
|
:param str [type]: 'market' or 'limit'
|
1957
1957
|
:param str [side]: 'buy' or 'sell'
|
1958
|
-
:param float amount: how much you want to trade in units of the base currency
|
1959
|
-
:param float [price]: the price at which the order is to be
|
1958
|
+
:param float amount: how much you want to trade in units of the base currency. For perpetual and inverse futures the amount is in USD units. For options it is in the underlying assets base currency.
|
1959
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1960
1960
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1961
1961
|
:param float [params.trailingAmount]: the quote amount to trail away from the current market price
|
1962
1962
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
ccxt/digifinex.py
CHANGED
@@ -1510,7 +1510,7 @@ class digifinex(Exchange, ImplicitAPI):
|
|
1510
1510
|
:param str type: 'market' or 'limit'
|
1511
1511
|
:param str side: 'buy' or 'sell'
|
1512
1512
|
:param float amount: how much you want to trade in units of the base currency, spot market orders use the quote currency, swap requires the number of contracts
|
1513
|
-
:param float [price]: the price at which the order is to be
|
1513
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1514
1514
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1515
1515
|
:param str [params.timeInForce]: "GTC", "IOC", "FOK", or "PO"
|
1516
1516
|
:param bool [params.postOnly]: True or False
|
@@ -1646,7 +1646,7 @@ class digifinex(Exchange, ImplicitAPI):
|
|
1646
1646
|
:param str type: 'market' or 'limit'
|
1647
1647
|
:param str side: 'buy' or 'sell'
|
1648
1648
|
:param float amount: how much you want to trade in units of the base currency, spot market orders use the quote currency, swap requires the number of contracts
|
1649
|
-
:param float [price]: the price at which the order is to be
|
1649
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1650
1650
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1651
1651
|
:returns dict: request to be sent to the exchange
|
1652
1652
|
"""
|
ccxt/exmo.py
CHANGED
@@ -1329,7 +1329,7 @@ class exmo(Exchange, ImplicitAPI):
|
|
1329
1329
|
:param str type: 'market' or 'limit'
|
1330
1330
|
:param str side: 'buy' or 'sell'
|
1331
1331
|
:param float amount: how much of currency you want to trade in units of base currency
|
1332
|
-
:param float [price]: the price at which the order is to be
|
1332
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1333
1333
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1334
1334
|
:param float [params.stopPrice]: the price at which a trigger order is triggered at
|
1335
1335
|
:param str [params.timeInForce]: *spot only* 'fok', 'ioc' or 'post_only'
|
@@ -1912,7 +1912,7 @@ class exmo(Exchange, ImplicitAPI):
|
|
1912
1912
|
:param str type: not used by exmo editOrder
|
1913
1913
|
:param str side: not used by exmo editOrder
|
1914
1914
|
:param float [amount]: how much of the currency you want to trade in units of the base currency
|
1915
|
-
:param float [price]: the price at which the order is to be
|
1915
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
1916
1916
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
1917
1917
|
:param float [params.triggerPrice]: stop price for stop-market and stop-limit orders
|
1918
1918
|
:param str params['marginMode']: must be set to isolated
|
ccxt/gate.py
CHANGED
@@ -640,6 +640,7 @@ class gate(Exchange, ImplicitAPI):
|
|
640
640
|
'createOrder': {
|
641
641
|
'expiration': 86400, # for conditional orders
|
642
642
|
},
|
643
|
+
'createMarketBuyOrderRequiresPrice': True,
|
643
644
|
'networks': {
|
644
645
|
'AVAXC': 'AVAX_C',
|
645
646
|
'BEP20': 'BSC',
|
@@ -3555,7 +3556,7 @@ class gate(Exchange, ImplicitAPI):
|
|
3555
3556
|
:param str type: 'limit' or 'market' *"market" is contract only*
|
3556
3557
|
:param str side: 'buy' or 'sell'
|
3557
3558
|
:param float amount: the amount of currency to trade
|
3558
|
-
:param float [price]:
|
3559
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
3559
3560
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
3560
3561
|
:param float [params.stopPrice]: The price at which a trigger order is triggered at
|
3561
3562
|
:param str [params.timeInForce]: "GTC", "IOC", or "PO"
|
@@ -3980,7 +3981,7 @@ class gate(Exchange, ImplicitAPI):
|
|
3980
3981
|
:param str type: 'market' or 'limit'
|
3981
3982
|
:param str side: 'buy' or 'sell'
|
3982
3983
|
:param float amount: how much of the currency you want to trade in units of the base currency
|
3983
|
-
:param float [price]: the price at which the order is to be
|
3984
|
+
:param float [price]: the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
3984
3985
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
3985
3986
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
3986
3987
|
"""
|