/python/ccxt/async_support/bitget.py
https://github.com/kroitor/ccxt · Python · 2702 lines · 1687 code · 46 blank · 969 comment · 177 complexity · 582055de9ad786b81a32603b016fc750 MD5 · raw file
- # -*- coding: utf-8 -*-
- # PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
- # https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
- from ccxt.async_support.base.exchange import Exchange
- import hashlib
- from ccxt.base.errors import ExchangeError
- from ccxt.base.errors import AuthenticationError
- from ccxt.base.errors import PermissionDenied
- from ccxt.base.errors import AccountSuspended
- from ccxt.base.errors import ArgumentsRequired
- from ccxt.base.errors import BadRequest
- from ccxt.base.errors import BadSymbol
- from ccxt.base.errors import InsufficientFunds
- from ccxt.base.errors import InvalidAddress
- from ccxt.base.errors import InvalidOrder
- from ccxt.base.errors import OrderNotFound
- from ccxt.base.errors import CancelPending
- from ccxt.base.errors import NotSupported
- from ccxt.base.errors import DDoSProtection
- from ccxt.base.errors import RateLimitExceeded
- from ccxt.base.errors import ExchangeNotAvailable
- from ccxt.base.errors import OnMaintenance
- from ccxt.base.errors import InvalidNonce
- from ccxt.base.errors import RequestTimeout
- from ccxt.base.decimal_to_precision import TRUNCATE
- from ccxt.base.decimal_to_precision import DECIMAL_PLACES
- from ccxt.base.decimal_to_precision import TICK_SIZE
- class bitget(Exchange):
- def describe(self):
- return self.deep_extend(super(bitget, self).describe(), {
- 'id': 'bitget',
- 'name': 'Bitget',
- 'countries': ['SG'],
- 'version': 'v3',
- 'rateLimit': 1000, # up to 3000 requests per 5 minutes ≈ 600 requests per minute ≈ 10 requests per second ≈ 100 ms
- 'has': {
- 'cancelOrder': True,
- 'cancelOrders': True,
- 'CORS': False,
- 'createOrder': True,
- 'fetchAccounts': True,
- 'fetchBalance': True,
- 'fetchCurrencies': True,
- 'fetchDeposits': True,
- 'fetchMarkets': True,
- 'fetchMyTrades': True,
- 'fetchOHLCV': True,
- 'fetchOrder': True,
- 'fetchOrderBook': True,
- 'fetchOpenOrders': True,
- 'fetchClosedOrders': True,
- 'fetchOrderTrades': True,
- 'fetchTicker': True,
- 'fetchTickers': True,
- 'fetchTime': True,
- 'fetchTrades': True,
- 'fetchWithdrawals': True,
- },
- 'timeframes': {
- '1m': '1m',
- '5m': '5m',
- '15m': '15m',
- '30m': '30m',
- '1h': '1h',
- '2h': '2h',
- '4h': '4h',
- '6h': '6h',
- '12h': '12h',
- '1d': '1d',
- '1w': '1w',
- },
- 'hostname': 'bitget.com',
- 'urls': {
- 'logo': 'https://user-images.githubusercontent.com/51840849/88317935-a8a21c80-cd22-11ea-8e2b-4b9fac5975eb.jpg',
- 'api': {
- 'data': 'https://api.{hostname}',
- 'api': 'https://api.{hostname}',
- 'capi': 'https://capi.{hostname}',
- 'swap': 'https://capi.{hostname}',
- },
- 'www': 'https://www.bitget.com',
- 'doc': [
- 'https://bitgetlimited.github.io/apidoc/en/swap',
- 'https://bitgetlimited.github.io/apidoc/en/spot',
- ],
- 'fees': 'https://www.bitget.cc/zh-CN/rate?tab=1',
- 'test': {
- 'rest': 'https://testnet.bitget.com',
- },
- 'referral': 'https://www.bitget.com/expressly?languageType=0&channelCode=ccxt&vipCode=tg9j',
- },
- 'api': {
- 'data': {
- 'get': [
- 'market/history/kline', # Kline data
- 'market/detail/merged', # Get aggregated ticker
- 'market/tickers', # Get all trading tickers
- 'market/allticker', # Get all trading market method 2
- 'market/depth', # Get Market Depth Data
- 'market/trade', # Get Trade Detail Data
- 'market/history/trade', # Get record of trading
- 'market/detail', # Get Market Detail 24h Volume
- 'common/symbols', # Query all trading pairs and accuracy supported in the station
- 'common/currencys', # Query all currencies supported in the station
- 'common/timestamp', # Query system current time
- ],
- },
- 'api': {
- 'get': [
- 'account/accounts', # Get all accounts of current user(即account_id)。
- 'accounts/{account_id}/balance', # Get the balance of the specified account
- 'order/orders', # Query order, deprecated
- 'order/orders/openOrders',
- 'order/orders/history',
- 'order/deposit_withdraw', # Query assets history
- ],
- 'post': [
- 'order/orders/place', # Place order
- 'order/orders/{order_id}/submitcancel', # Request to cancel an order request
- 'order/orders/batchcancel', # Bulk order cancellation
- 'order/orders/{order_id}', # Query an order details
- 'order/orders/{order_id}/matchresults', # Query the transaction details of an order
- 'order/matchresults', # Query current order, order history
- ],
- },
- 'capi': {
- 'get': [
- 'market/time',
- 'market/contracts',
- 'market/depth',
- 'market/tickers',
- 'market/ticker',
- 'market/trades',
- 'market/candles',
- 'market/index',
- 'market/open_interest',
- 'market/price_limit',
- 'market/funding_time',
- 'market/historical_funding_rate',
- 'market/mark_price',
- 'market/open_count',
- ],
- },
- 'swap': {
- 'get': [
- 'account/accounts',
- 'account/account',
- 'account/settings',
- 'position/allPosition',
- 'position/singlePosition',
- 'position/holds',
- 'order/detail',
- 'order/orders',
- 'order/fills',
- 'order/currentPlan',
- 'order/historyPlan',
- ],
- 'post': [
- 'account/leverage',
- 'account/adjustMargin',
- 'account/modifyAutoAppendMargin',
- 'order/placeOrder',
- 'order/batchOrders',
- 'order/cancel_order',
- 'order/cancel_batch_orders',
- 'order/plan_order',
- 'order/cancel_plan',
- ],
- },
- },
- 'fees': {
- 'spot': {
- 'taker': 0.002,
- 'maker': 0.002,
- },
- 'swap': {
- 'taker': 0.0006,
- 'maker': 0.0004,
- },
- },
- 'requiredCredentials': {
- 'apiKey': True,
- 'secret': True,
- 'password': True,
- },
- 'exceptions': {
- # http error codes
- # 400 Bad Request — Invalid request format
- # 401 Unauthorized — Invalid API Key
- # 403 Forbidden — You do not have access to the requested resource
- # 404 Not Found
- # 500 Internal Server Error — We had a problem with our server
- 'exact': {
- '1': ExchangeError, # {"code": 1, "message": "System error"}
- # undocumented
- 'failure to get a peer from the ring-balancer': ExchangeNotAvailable, # {"message": "failure to get a peer from the ring-balancer"}
- '4010': PermissionDenied, # {"code": 4010, "message": "For the security of your funds, withdrawals are not permitted within 24 hours after changing fund password / mobile number / Google Authenticator settings "}
- # common
- # '0': ExchangeError, # 200 successful,when the order placement / cancellation / operation is successful
- '4001': ExchangeError, # no data received in 30s
- '4002': ExchangeError, # Buffer full. cannot write data
- # --------------------------------------------------------
- '30001': AuthenticationError, # {"code": 30001, "message": 'request header "OK_ACCESS_KEY" cannot be blank'}
- '30002': AuthenticationError, # {"code": 30002, "message": 'request header "OK_ACCESS_SIGN" cannot be blank'}
- '30003': AuthenticationError, # {"code": 30003, "message": 'request header "OK_ACCESS_TIMESTAMP" cannot be blank'}
- '30004': AuthenticationError, # {"code": 30004, "message": 'request header "OK_ACCESS_PASSPHRASE" cannot be blank'}
- '30005': InvalidNonce, # {"code": 30005, "message": "invalid OK_ACCESS_TIMESTAMP"}
- '30006': AuthenticationError, # {"code": 30006, "message": "invalid OK_ACCESS_KEY"}
- '30007': BadRequest, # {"code": 30007, "message": 'invalid Content_Type, please use "application/json" format'}
- '30008': RequestTimeout, # {"code": 30008, "message": "timestamp request expired"}
- '30009': ExchangeError, # {"code": 30009, "message": "system error"}
- '30010': AuthenticationError, # {"code": 30010, "message": "API validation failed"}
- '30011': PermissionDenied, # {"code": 30011, "message": "invalid IP"}
- '30012': AuthenticationError, # {"code": 30012, "message": "invalid authorization"}
- '30013': AuthenticationError, # {"code": 30013, "message": "invalid sign"}
- '30014': DDoSProtection, # {"code": 30014, "message": "request too frequent"}
- '30015': AuthenticationError, # {"code": 30015, "message": 'request header "OK_ACCESS_PASSPHRASE" incorrect'}
- '30016': ExchangeError, # {"code": 30015, "message": "you are using v1 apiKey, please use v1 endpoint. If you would like to use v3 endpoint, please subscribe to v3 apiKey"}
- '30017': ExchangeError, # {"code": 30017, "message": "apikey's broker id does not match"}
- '30018': ExchangeError, # {"code": 30018, "message": "apikey's domain does not match"}
- '30019': ExchangeNotAvailable, # {"code": 30019, "message": "Api is offline or unavailable"}
- '30020': BadRequest, # {"code": 30020, "message": "body cannot be blank"}
- '30021': BadRequest, # {"code": 30021, "message": "Json data format error"}, {"code": 30021, "message": "json data format error"}
- '30022': PermissionDenied, # {"code": 30022, "message": "Api has been frozen"}
- '30023': BadRequest, # {"code": 30023, "message": "{0} parameter cannot be blank"}
- '30024': BadSymbol, # {"code":30024,"message":"\"instrument_id\" is an invalid parameter"}
- '30025': BadRequest, # {"code": 30025, "message": "{0} parameter category error"}
- '30026': DDoSProtection, # {"code": 30026, "message": "requested too frequent"}
- '30027': AuthenticationError, # {"code": 30027, "message": "login failure"}
- '30028': PermissionDenied, # {"code": 30028, "message": "unauthorized execution"}
- '30029': AccountSuspended, # {"code": 30029, "message": "account suspended"}
- '30030': ExchangeError, # {"code": 30030, "message": "endpoint request failed. Please try again"}
- '30031': BadRequest, # {"code": 30031, "message": "token does not exist"}
- '30032': BadSymbol, # {"code": 30032, "message": "pair does not exist"}
- '30033': BadRequest, # {"code": 30033, "message": "exchange domain does not exist"}
- '30034': ExchangeError, # {"code": 30034, "message": "exchange ID does not exist"}
- '30035': ExchangeError, # {"code": 30035, "message": "trading is not supported in self website"}
- '30036': ExchangeError, # {"code": 30036, "message": "no relevant data"}
- '30037': ExchangeNotAvailable, # {"code": 30037, "message": "endpoint is offline or unavailable"}
- # '30038': AuthenticationError, # {"code": 30038, "message": "user does not exist"}
- '30038': OnMaintenance, # {"client_oid":"","code":"30038","error_code":"30038","error_message":"Matching engine is being upgraded. Please try in about 1 minute.","message":"Matching engine is being upgraded. Please try in about 1 minute.","order_id":"-1","result":false}
- # futures
- '32001': AccountSuspended, # {"code": 32001, "message": "futures account suspended"}
- '32002': PermissionDenied, # {"code": 32002, "message": "futures account does not exist"}
- '32003': CancelPending, # {"code": 32003, "message": "canceling, please wait"}
- '32004': ExchangeError, # {"code": 32004, "message": "you have no unfilled orders"}
- '32005': InvalidOrder, # {"code": 32005, "message": "max order quantity"}
- '32006': InvalidOrder, # {"code": 32006, "message": "the order price or trigger price exceeds USD 1 million"}
- '32007': InvalidOrder, # {"code": 32007, "message": "leverage level must be the same for orders on the same side of the contract"}
- '32008': InvalidOrder, # {"code": 32008, "message": "Max. positions to open(cross margin)"}
- '32009': InvalidOrder, # {"code": 32009, "message": "Max. positions to open(fixed margin)"}
- '32010': ExchangeError, # {"code": 32010, "message": "leverage cannot be changed with open positions"}
- '32011': ExchangeError, # {"code": 32011, "message": "futures status error"}
- '32012': ExchangeError, # {"code": 32012, "message": "futures order update error"}
- '32013': ExchangeError, # {"code": 32013, "message": "token type is blank"}
- '32014': ExchangeError, # {"code": 32014, "message": "your number of contracts closing is larger than the number of contracts available"}
- '32015': ExchangeError, # {"code": 32015, "message": "margin ratio is lower than 100% before opening positions"}
- '32016': ExchangeError, # {"code": 32016, "message": "margin ratio is lower than 100% after opening position"}
- '32017': ExchangeError, # {"code": 32017, "message": "no BBO"}
- '32018': ExchangeError, # {"code": 32018, "message": "the order quantity is less than 1, please try again"}
- '32019': ExchangeError, # {"code": 32019, "message": "the order price deviates from the price of the previous minute by more than 3%"}
- '32020': ExchangeError, # {"code": 32020, "message": "the price is not in the range of the price limit"}
- '32021': ExchangeError, # {"code": 32021, "message": "leverage error"}
- '32022': ExchangeError, # {"code": 32022, "message": "self function is not supported in your country or region according to the regulations"}
- '32023': ExchangeError, # {"code": 32023, "message": "self account has outstanding loan"}
- '32024': ExchangeError, # {"code": 32024, "message": "order cannot be placed during delivery"}
- '32025': ExchangeError, # {"code": 32025, "message": "order cannot be placed during settlement"}
- '32026': ExchangeError, # {"code": 32026, "message": "your account is restricted from opening positions"}
- '32027': ExchangeError, # {"code": 32027, "message": "cancelled over 20 orders"}
- '32028': AccountSuspended, # {"code": 32028, "message": "account is suspended and liquidated"}
- '32029': ExchangeError, # {"code": 32029, "message": "order info does not exist"}
- '32030': InvalidOrder, # The order cannot be cancelled
- '32031': ArgumentsRequired, # client_oid or order_id is required.
- '32038': AuthenticationError, # User does not exist
- '32040': ExchangeError, # User have open contract orders or position
- '32044': ExchangeError, # {"code": 32044, "message": "The margin ratio after submitting self order is lower than the minimum requirement({0}) for your tier."}
- '32045': ExchangeError, # String of commission over 1 million
- '32046': ExchangeError, # Each user can hold up to 10 trade plans at the same time
- '32047': ExchangeError, # system error
- '32048': InvalidOrder, # Order strategy track range error
- '32049': ExchangeError, # Each user can hold up to 10 track plans at the same time
- '32050': InvalidOrder, # Order strategy rang error
- '32051': InvalidOrder, # Order strategy ice depth error
- '32052': ExchangeError, # String of commission over 100 thousand
- '32053': ExchangeError, # Each user can hold up to 6 ice plans at the same time
- '32057': ExchangeError, # The order price is zero. Market-close-all function cannot be executed
- '32054': ExchangeError, # Trade not allow
- '32055': InvalidOrder, # cancel order error
- '32056': ExchangeError, # iceberg per order average should between {0}-{1} contracts
- '32058': ExchangeError, # Each user can hold up to 6 initiative plans at the same time
- '32059': InvalidOrder, # Total amount should exceed per order amount
- '32060': InvalidOrder, # Order strategy type error
- '32061': InvalidOrder, # Order strategy initiative limit error
- '32062': InvalidOrder, # Order strategy initiative range error
- '32063': InvalidOrder, # Order strategy initiative rate error
- '32064': ExchangeError, # Time Stringerval of orders should set between 5-120s
- '32065': ExchangeError, # Close amount exceeds the limit of Market-close-all(999 for BTC, and 9999 for the rest tokens)
- '32066': ExchangeError, # You have open orders. Please cancel all open orders before changing your leverage level.
- '32067': ExchangeError, # Account equity < required margin in self setting. Please adjust your leverage level again.
- '32068': ExchangeError, # The margin for self position will fall short of the required margin in self setting. Please adjust your leverage level or increase your margin to proceed.
- '32069': ExchangeError, # Target leverage level too low. Your account balance is insufficient to cover the margin required. Please adjust the leverage level again.
- '32070': ExchangeError, # Please check open position or unfilled order
- '32071': ExchangeError, # Your current liquidation mode does not support self action.
- '32072': ExchangeError, # The highest available margin for your order’s tier is {0}. Please edit your margin and place a new order.
- '32073': ExchangeError, # The action does not apply to the token
- '32074': ExchangeError, # The number of contracts of your position, open orders, and the current order has exceeded the maximum order limit of self asset.
- '32075': ExchangeError, # Account risk rate breach
- '32076': ExchangeError, # Liquidation of the holding position(s) at market price will require cancellation of all pending close orders of the contracts.
- '32077': ExchangeError, # Your margin for self asset in futures account is insufficient and the position has been taken over for liquidation.(You will not be able to place orders, close positions, transfer funds, or add margin during self period of time. Your account will be restored after the liquidation is complete.)
- '32078': ExchangeError, # Please cancel all open orders before switching the liquidation mode(Please cancel all open orders before switching the liquidation mode)
- '32079': ExchangeError, # Your open positions are at high risk.(Please add margin or reduce positions before switching the mode)
- '32080': ExchangeError, # Funds cannot be transferred out within 30 minutes after futures settlement
- '32083': ExchangeError, # The number of contracts should be a positive multiple of %%. Please place your order again
- # token and margin trading
- '33001': PermissionDenied, # {"code": 33001, "message": "margin account for self pair is not enabled yet"}
- '33002': AccountSuspended, # {"code": 33002, "message": "margin account for self pair is suspended"}
- '33003': InsufficientFunds, # {"code": 33003, "message": "no loan balance"}
- '33004': ExchangeError, # {"code": 33004, "message": "loan amount cannot be smaller than the minimum limit"}
- '33005': ExchangeError, # {"code": 33005, "message": "repayment amount must exceed 0"}
- '33006': ExchangeError, # {"code": 33006, "message": "loan order not found"}
- '33007': ExchangeError, # {"code": 33007, "message": "status not found"}
- '33008': InsufficientFunds, # {"code": 33008, "message": "loan amount cannot exceed the maximum limit"}
- '33009': ExchangeError, # {"code": 33009, "message": "user ID is blank"}
- '33010': ExchangeError, # {"code": 33010, "message": "you cannot cancel an order during session 2 of call auction"}
- '33011': ExchangeError, # {"code": 33011, "message": "no new market data"}
- '33012': ExchangeError, # {"code": 33012, "message": "order cancellation failed"}
- '33013': InvalidOrder, # {"code": 33013, "message": "order placement failed"}
- '33014': OrderNotFound, # {"code": 33014, "message": "order does not exist"}
- '33015': InvalidOrder, # {"code": 33015, "message": "exceeded maximum limit"}
- '33016': ExchangeError, # {"code": 33016, "message": "margin trading is not open for self token"}
- '33017': InsufficientFunds, # {"code": 33017, "message": "insufficient balance"}
- '33018': ExchangeError, # {"code": 33018, "message": "self parameter must be smaller than 1"}
- '33020': ExchangeError, # {"code": 33020, "message": "request not supported"}
- '33021': BadRequest, # {"code": 33021, "message": "token and the pair do not match"}
- '33022': InvalidOrder, # {"code": 33022, "message": "pair and the order do not match"}
- '33023': ExchangeError, # {"code": 33023, "message": "you can only place market orders during call auction"}
- '33024': InvalidOrder, # {"code": 33024, "message": "trading amount too small"}
- '33025': InvalidOrder, # {"code": 33025, "message": "base token amount is blank"}
- '33026': ExchangeError, # {"code": 33026, "message": "transaction completed"}
- '33027': InvalidOrder, # {"code": 33027, "message": "cancelled order or order cancelling"}
- '33028': InvalidOrder, # {"code": 33028, "message": "the decimal places of the trading price exceeded the limit"}
- '33029': InvalidOrder, # {"code": 33029, "message": "the decimal places of the trading size exceeded the limit"}
- '33034': ExchangeError, # {"code": 33034, "message": "You can only place limit order after Call Auction has started"}
- '33035': ExchangeError, # This type of order cannot be canceled(This type of order cannot be canceled)
- '33036': ExchangeError, # Exceeding the limit of entrust order
- '33037': ExchangeError, # The buy order price should be lower than 130% of the trigger price
- '33038': ExchangeError, # The sell order price should be higher than 70% of the trigger price
- '33039': ExchangeError, # The limit of callback rate is 0 < x <= 5%
- '33040': ExchangeError, # The trigger price of a buy order should be lower than the latest transaction price
- '33041': ExchangeError, # The trigger price of a sell order should be higher than the latest transaction price
- '33042': ExchangeError, # The limit of price variance is 0 < x <= 1%
- '33043': ExchangeError, # The total amount must be larger than 0
- '33044': ExchangeError, # The average amount should be 1/1000 * total amount <= x <= total amount
- '33045': ExchangeError, # The price should not be 0, including trigger price, order price, and price limit
- '33046': ExchangeError, # Price variance should be 0 < x <= 1%
- '33047': ExchangeError, # Sweep ratio should be 0 < x <= 100%
- '33048': ExchangeError, # Per order limit: Total amount/1000 < x <= Total amount
- '33049': ExchangeError, # Total amount should be X > 0
- '33050': ExchangeError, # Time interval should be 5 <= x <= 120s
- '33051': ExchangeError, # cancel order number not higher limit: plan and track entrust no more than 10, ice and time entrust no more than 6
- '33059': BadRequest, # {"code": 33059, "message": "client_oid or order_id is required"}
- '33060': BadRequest, # {"code": 33060, "message": "Only fill in either parameter client_oid or order_id"}
- '33061': ExchangeError, # Value of a single market price order cannot exceed 100,000 USD
- '33062': ExchangeError, # The leverage ratio is too high. The borrowed position has exceeded the maximum position of self leverage ratio. Please readjust the leverage ratio
- '33063': ExchangeError, # Leverage multiple is too low, there is insufficient margin in the account, please readjust the leverage ratio
- '33064': ExchangeError, # The setting of the leverage ratio cannot be less than 2, please readjust the leverage ratio
- '33065': ExchangeError, # Leverage ratio exceeds maximum leverage ratio, please readjust leverage ratio
- # account
- '21009': ExchangeError, # Funds cannot be transferred out within 30 minutes after swap settlement(Funds cannot be transferred out within 30 minutes after swap settlement)
- '34001': PermissionDenied, # {"code": 34001, "message": "withdrawal suspended"}
- '34002': InvalidAddress, # {"code": 34002, "message": "please add a withdrawal address"}
- '34003': ExchangeError, # {"code": 34003, "message": "sorry, self token cannot be withdrawn to xx at the moment"}
- '34004': ExchangeError, # {"code": 34004, "message": "withdrawal fee is smaller than minimum limit"}
- '34005': ExchangeError, # {"code": 34005, "message": "withdrawal fee exceeds the maximum limit"}
- '34006': ExchangeError, # {"code": 34006, "message": "withdrawal amount is lower than the minimum limit"}
- '34007': ExchangeError, # {"code": 34007, "message": "withdrawal amount exceeds the maximum limit"}
- '34008': InsufficientFunds, # {"code": 34008, "message": "insufficient balance"}
- '34009': ExchangeError, # {"code": 34009, "message": "your withdrawal amount exceeds the daily limit"}
- '34010': ExchangeError, # {"code": 34010, "message": "transfer amount must be larger than 0"}
- '34011': ExchangeError, # {"code": 34011, "message": "conditions not met"}
- '34012': ExchangeError, # {"code": 34012, "message": "the minimum withdrawal amount for NEO is 1, and the amount must be an integer"}
- '34013': ExchangeError, # {"code": 34013, "message": "please transfer"}
- '34014': ExchangeError, # {"code": 34014, "message": "transfer limited"}
- '34015': ExchangeError, # {"code": 34015, "message": "subaccount does not exist"}
- '34016': PermissionDenied, # {"code": 34016, "message": "transfer suspended"}
- '34017': AccountSuspended, # {"code": 34017, "message": "account suspended"}
- '34018': AuthenticationError, # {"code": 34018, "message": "incorrect trades password"}
- '34019': PermissionDenied, # {"code": 34019, "message": "please bind your email before withdrawal"}
- '34020': PermissionDenied, # {"code": 34020, "message": "please bind your funds password before withdrawal"}
- '34021': InvalidAddress, # {"code": 34021, "message": "Not verified address"}
- '34022': ExchangeError, # {"code": 34022, "message": "Withdrawals are not available for sub accounts"}
- '34023': PermissionDenied, # {"code": 34023, "message": "Please enable futures trading before transferring your funds"}
- '34026': ExchangeError, # transfer too frequently(transfer too frequently)
- '34036': ExchangeError, # Parameter is incorrect, please refer to API documentation
- '34037': ExchangeError, # Get the sub-account balance interface, account type is not supported
- '34038': ExchangeError, # Since your C2C transaction is unusual, you are restricted from fund transfer. Please contact our customer support to cancel the restriction
- '34039': ExchangeError, # You are now restricted from transferring out your funds due to abnormal trades on C2C Market. Please transfer your fund on our website or app instead to verify your identity
- # swap
- '35001': ExchangeError, # {"code": 35001, "message": "Contract does not exist"}
- '35002': ExchangeError, # {"code": 35002, "message": "Contract settling"}
- '35003': ExchangeError, # {"code": 35003, "message": "Contract paused"}
- '35004': ExchangeError, # {"code": 35004, "message": "Contract pending settlement"}
- '35005': AuthenticationError, # {"code": 35005, "message": "User does not exist"}
- '35008': InvalidOrder, # {"code": 35008, "message": "Risk ratio too high"}
- '35010': InvalidOrder, # {"code": 35010, "message": "Position closing too large"}
- '35012': InvalidOrder, # {"code": 35012, "message": "Incorrect order size"}
- '35014': InvalidOrder, # {"code": 35014, "message": "Order price is not within limit"}
- '35015': InvalidOrder, # {"code": 35015, "message": "Invalid leverage level"}
- '35017': ExchangeError, # {"code": 35017, "message": "Open orders exist"}
- '35019': InvalidOrder, # {"code": 35019, "message": "Order size too large"}
- '35020': InvalidOrder, # {"code": 35020, "message": "Order price too high"}
- '35021': InvalidOrder, # {"code": 35021, "message": "Order size exceeded current tier limit"}
- '35022': ExchangeError, # {"code": 35022, "message": "Contract status error"}
- '35024': ExchangeError, # {"code": 35024, "message": "Contract not initialized"}
- '35025': InsufficientFunds, # {"code": 35025, "message": "No account balance"}
- '35026': ExchangeError, # {"code": 35026, "message": "Contract settings not initialized"}
- '35029': OrderNotFound, # {"code": 35029, "message": "Order does not exist"}
- '35030': InvalidOrder, # {"code": 35030, "message": "Order size too large"}
- '35031': InvalidOrder, # {"code": 35031, "message": "Cancel order size too large"}
- '35032': ExchangeError, # {"code": 35032, "message": "Invalid user status"}
- '35037': ExchangeError, # No last traded price in cache
- '35039': ExchangeError, # {"code": 35039, "message": "Open order quantity exceeds limit"}
- '35040': InvalidOrder, # {"error_message":"Invalid order type","result":"true","error_code":"35040","order_id":"-1"}
- '35044': ExchangeError, # {"code": 35044, "message": "Invalid order status"}
- '35046': InsufficientFunds, # {"code": 35046, "message": "Negative account balance"}
- '35047': InsufficientFunds, # {"code": 35047, "message": "Insufficient account balance"}
- '35048': ExchangeError, # {"code": 35048, "message": "User contract is frozen and liquidating"}
- '35049': InvalidOrder, # {"code": 35049, "message": "Invalid order type"}
- '35050': InvalidOrder, # {"code": 35050, "message": "Position settings are blank"}
- '35052': InsufficientFunds, # {"code": 35052, "message": "Insufficient cross margin"}
- '35053': ExchangeError, # {"code": 35053, "message": "Account risk too high"}
- '35055': InsufficientFunds, # {"code": 35055, "message": "Insufficient account balance"}
- '35057': ExchangeError, # {"code": 35057, "message": "No last traded price"}
- '35058': ExchangeError, # {"code": 35058, "message": "No limit"}
- '35059': BadRequest, # {"code": 35059, "message": "client_oid or order_id is required"}
- '35060': BadRequest, # {"code": 35060, "message": "Only fill in either parameter client_oid or order_id"}
- '35061': BadRequest, # {"code": 35061, "message": "Invalid instrument_id"}
- '35062': InvalidOrder, # {"code": 35062, "message": "Invalid match_price"}
- '35063': InvalidOrder, # {"code": 35063, "message": "Invalid order_size"}
- '35064': InvalidOrder, # {"code": 35064, "message": "Invalid client_oid"}
- '35066': InvalidOrder, # Order interval error
- '35067': InvalidOrder, # Time-weighted order ratio error
- '35068': InvalidOrder, # Time-weighted order range error
- '35069': InvalidOrder, # Time-weighted single transaction limit error
- '35070': InvalidOrder, # Algo order type error
- '35071': InvalidOrder, # Order total must be larger than single order limit
- '35072': InvalidOrder, # Maximum 6 unfulfilled time-weighted orders can be held at the same time
- '35073': InvalidOrder, # Order price is 0. Market-close-all not available
- '35074': InvalidOrder, # Iceberg order single transaction average error
- '35075': InvalidOrder, # Failed to cancel order
- '35076': InvalidOrder, # LTC 20x leverage. Not allowed to open position
- '35077': InvalidOrder, # Maximum 6 unfulfilled iceberg orders can be held at the same time
- '35078': InvalidOrder, # Order amount exceeded 100,000
- '35079': InvalidOrder, # Iceberg order price variance error
- '35080': InvalidOrder, # Callback rate error
- '35081': InvalidOrder, # Maximum 10 unfulfilled trail orders can be held at the same time
- '35082': InvalidOrder, # Trail order callback rate error
- '35083': InvalidOrder, # Each user can only hold a maximum of 10 unfulfilled stop-limit orders at the same time
- '35084': InvalidOrder, # Order amount exceeded 1 million
- '35085': InvalidOrder, # Order amount is not in the correct range
- '35086': InvalidOrder, # Price exceeds 100 thousand
- '35087': InvalidOrder, # Price exceeds 100 thousand
- '35088': InvalidOrder, # Average amount error
- '35089': InvalidOrder, # Price exceeds 100 thousand
- '35090': ExchangeError, # No stop-limit orders available for cancelation
- '35091': ExchangeError, # No trail orders available for cancellation
- '35092': ExchangeError, # No iceberg orders available for cancellation
- '35093': ExchangeError, # No trail orders available for cancellation
- '35094': ExchangeError, # Stop-limit order last traded price error
- '35095': BadRequest, # Instrument_id error
- '35096': ExchangeError, # Algo order status error
- '35097': ExchangeError, # Order status and order ID cannot exist at the same time
- '35098': ExchangeError, # An order status or order ID must exist
- '35099': ExchangeError, # Algo order ID error
- # option
- '36001': BadRequest, # Invalid underlying index.
- '36002': BadRequest, # Instrument does not exist.
- '36005': ExchangeError, # Instrument status is invalid.
- '36101': AuthenticationError, # Account does not exist.
- '36102': PermissionDenied, # Account status is invalid.
- '36103': AccountSuspended, # Account is suspended due to ongoing liquidation.
- '36104': PermissionDenied, # Account is not enabled for options trading.
- '36105': PermissionDenied, # Please enable the account for option contract.
- '36106': AccountSuspended, # Funds cannot be transferred in or out, as account is suspended.
- '36107': PermissionDenied, # Funds cannot be transferred out within 30 minutes after option exercising or settlement.
- '36108': InsufficientFunds, # Funds cannot be transferred in or out, as equity of the account is less than zero.
- '36109': PermissionDenied, # Funds cannot be transferred in or out during option exercising or settlement.
- '36201': PermissionDenied, # New order function is blocked.
- '36202': PermissionDenied, # Account does not have permission to short option.
- '36203': InvalidOrder, # Invalid format for client_oid.
- '36204': ExchangeError, # Invalid format for request_id.
- '36205': BadRequest, # Instrument id does not match underlying index.
- '36206': BadRequest, # Order_id and client_oid can not be used at the same time.
- '36207': InvalidOrder, # Either order price or fartouch price must be present.
- '36208': InvalidOrder, # Either order price or size must be present.
- '36209': InvalidOrder, # Either order_id or client_oid must be present.
- '36210': InvalidOrder, # Either order_ids or client_oids must be present.
- '36211': InvalidOrder, # Exceeding max batch size for order submission.
- '36212': InvalidOrder, # Exceeding max batch size for oder cancellation.
- '36213': InvalidOrder, # Exceeding max batch size for order amendment.
- '36214': ExchangeError, # Instrument does not have valid bid/ask quote.
- '36216': OrderNotFound, # Order does not exist.
- '36217': InvalidOrder, # Order submission failed.
- '36218': InvalidOrder, # Order cancellation failed.
- '36219': InvalidOrder, # Order amendment failed.
- '36220': InvalidOrder, # Order is pending cancel.
- '36221': InvalidOrder, # Order qty is not valid multiple of lot size.
- '36222': InvalidOrder, # Order price is breaching highest buy limit.
- '36223': InvalidOrder, # Order price is breaching lowest sell limit.
- '36224': InvalidOrder, # Exceeding max order size.
- '36225': InvalidOrder, # Exceeding max open order count for instrument.
- '36226': InvalidOrder, # Exceeding max open order count for underlying.
- '36227': InvalidOrder, # Exceeding max open size across all orders for underlying
- '36228': InvalidOrder, # Exceeding max available qty for instrument.
- '36229': InvalidOrder, # Exceeding max available qty for underlying.
- '36230': InvalidOrder, # Exceeding max position limit for underlying.
- # --------------------------------------------------------
- # swap
- '400': BadRequest, # Bad Request
- '401': AuthenticationError, # Unauthorized access
- '403': PermissionDenied, # Access prohibited
- '404': BadRequest, # Request address does not exist
- '405': BadRequest, # The HTTP Method is not supported
- '415': BadRequest, # The current media type is not supported
- '429': DDoSProtection, # Too many requests
- '500': ExchangeNotAvailable, # System busy
- '1001': RateLimitExceeded, # The request is too frequent and has been throttled
- '1002': ExchangeError, # {0} verifications within 24 hours
- '1003': ExchangeError, # You failed more than {0} times today, the current operation is locked, please try again in 24 hours
- # '00000': ExchangeError, # success
- '40001': AuthenticationError, # ACCESS_KEY cannot be empty
- '40002': AuthenticationError, # SECRET_KEY cannot be empty
- '40003': AuthenticationError, # Signature cannot be empty
- '40004': InvalidNonce, # Request timestamp expired
- '40005': InvalidNonce, # Invalid ACCESS_TIMESTAMP
- '40006': AuthenticationError, # Invalid ACCESS_KEY
- '40007': BadRequest, # Invalid Content_Type
- '40008': InvalidNonce, # Request timestamp expired
- '40009': AuthenticationError, # sign signature error
- '40010': AuthenticationError, # sign signature error
- '40011': AuthenticationError, # ACCESS_PASSPHRASE cannot be empty
- '40012': AuthenticationError, # apikey/password is incorrect
- '40013': ExchangeError, # User status is abnormal
- '40014': PermissionDenied, # Incorrect permissions
- '40015': ExchangeError, # System is abnormal, please try again later
- '40016': PermissionDenied, # The user must bind the phone or Google
- '40017': ExchangeError, # Parameter verification failed
- '40018': PermissionDenied, # Invalid IP
- '40102': BadRequest, # Contract configuration does not exist, please check the parameters
- '40103': BadRequest, # Request method cannot be empty
- '40104': ExchangeError, # Lever adjustment failure
- '40105': ExchangeError, # Abnormal access to current price limit data
- '40106': ExchangeError, # Abnormal get next settlement time
- '40107': ExchangeError, # Abnormal access to index price data
- '40108': InvalidOrder, # Wrong order quantity
- '40109': OrderNotFound, # The data of the order cannot be found, please confirm the order number
- '40200': OnMaintenance, # Server upgrade, please try again later
- '40201': InvalidOrder, # Order number cannot be empty
- '40202': ExchangeError, # User information cannot be empty
- '40203': BadRequest, # The amount of adjustment margin cannot be empty or negative
- '40204': BadRequest, # Adjustment margin type cannot be empty
- '40205': BadRequest, # Adjusted margin type data is wrong
- '40206': BadRequest, # The direction of the adjustment margin cannot be empty
- '40207': BadRequest, # The adjustment margin data is wrong
- '40208': BadRequest, # The accuracy of the adjustment margin amount is incorrect
- '40209': BadRequest, # The current page number is wrong, please confirm
- '40300': ExchangeError, # User does not exist
- '40301': PermissionDenied, # Permission has not been obtained yet. If you need to use it, please contact customer service
- '40302': BadRequest, # Parameter abnormality
- '40303': BadRequest, # Can only query up to 20,000 data
- '40304': BadRequest, # Parameter type is abnormal
- '40305': BadRequest, # Client_oid length is not greater than 50, and cannot be Martian characters
- '40306': ExchangeError, # Batch processing orders can only process up to 20
- '40308': OnMaintenance, # The contract is being temporarily maintained
- '40309': BadSymbol, # The contract has been removed
- '40400': ExchangeError, # Status check abnormal
- '40401': ExchangeError, # The operation cannot be performed
- '40402': BadRequest, # The opening direction cannot be empty
- '40403': BadRequest, # Wrong opening direction format
- '40404': BadRequest, # Whether to enable automatic margin call parameters cannot be empty
- '40405': BadRequest, # Whether to enable the automatic margin call parameter type is wrong
- '40406': BadRequest, # Whether to enable automatic margin call parameters is of unknown type
- '40407': ExchangeError, # The query direction is not the direction entrusted by the plan
- '40408': ExchangeError, # Wrong time range
- '40409': ExchangeError, # Time format error
- '40500': InvalidOrder, # Client_oid check error
- '40501': ExchangeError, # Channel name error
- '40502': ExchangeError, # If it is a copy user, you must pass the copy to whom
- '40503': ExchangeError, # With the single type
- '40504': ExchangeError, # Platform code must pass
- '40505': ExchangeError, # Not the same as single type
- '40506': AuthenticationError, # Platform signature error
- '40507': AuthenticationError, # Api signature error
- '40508': ExchangeError, # KOL is not authorized
- '40509': ExchangeError, # Abnormal copy end
- '40600': ExchangeError, # Copy function suspended
- '40601': ExchangeError, # Followers cannot be KOL
- '40602': ExchangeError, # The number of copies has reached the limit and cannot process the request
- '40603': ExchangeError, # Abnormal copy end
- '40604': ExchangeNotAvailable, # Server is busy, please try again later
- '40605': ExchangeError, # Copy type, the copy number must be passed
- '40606': ExchangeError, # The type of document number is wrong
- '40607': ExchangeError, # Document number must be passed
- '40608': ExchangeError, # No documented products currently supported
- '40609': ExchangeError, # The contract product does not support copying
- '40700': BadRequest, # Cursor parameters are incorrect
- '40701': ExchangeError, # KOL is not authorized
- '40702': ExchangeError, # Unauthorized copying user
- '40703': ExchangeError, # Bill inquiry start and end time cannot be empty
- '40704': ExchangeError, # Can only check the data of the last three months
- '40705': BadRequest, # The start and end time cannot exceed 90 days
- '40706': InvalidOrder, # Wrong order price
- '40707': BadRequest, # Start time is greater than end time
- '40708': BadRequest, # Parameter verification is abnormal
- '40709': ExchangeError, # There is no position in self position, and no automatic margin call can be set
- '40710': ExchangeError, # Abnormal account status
- '40711': InsufficientFunds, # Insufficient contract account balance
- '40712': InsufficientFunds, # Insufficient margin
- '40713': ExchangeError, # Cannot exceed the maximum transferable margin amount
- '40714': ExchangeError, # No direct margin call is allowed
- # spot
- 'invalid sign': AuthenticationError,
- 'invalid currency': BadSymbol, # invalid trading pair
- 'invalid symbol': BadSymbol,
- 'invalid period': BadRequest, # invalid Kline type
- 'invalid user': ExchangeError,
- 'invalid amount': InvalidOrder,
- 'invalid type': InvalidOrder, # {"status":"error","ts":1595700344504,"err_code":"invalid-parameter","err_msg":"invalid type"}
- 'invalid orderId': InvalidOrder,
- 'invalid record': ExchangeError,
- 'invalid accountId': BadRequest,
- 'invalid address': BadRequest,
- 'accesskey not None': AuthenticationError, # {"status":"error","ts":1595704360508,"err_code":"invalid-parameter","err_msg":"accesskey not null"}
- 'illegal accesskey': AuthenticationError,
- 'sign not null': AuthenticationError,
- 'req_time is too much difference from server time': InvalidNonce,
- 'permissions not right': PermissionDenied, # {"status":"error","ts":1595704490084,"err_code":"invalid-parameter","err_msg":"permissions not right"}
- 'illegal sign invalid': AuthenticationError, # {"status":"error","ts":1595684716042,"err_code":"invalid-parameter","err_msg":"illegal sign invalid"}
- 'user locked': AccountSuspended,
- 'Request Frequency Is Too High': RateLimitExceeded,
- 'more than a daily rate of cash': BadRequest,
- 'more than the maximum daily withdrawal amount': BadRequest,
- 'need to bind email or mobile': ExchangeError,
- 'user forbid': PermissionDenied,
- 'User Prohibited Cash Withdrawal': PermissionDenied,
- 'Cash Withdrawal Is Less Than The Minimum Value': BadRequest,
- 'Cash Withdrawal Is More Than The Maximum Value': BadRequest,
- 'the account with in 24 hours ban coin': PermissionDenied,
- 'order cancel fail': BadRequest, # {"status":"error","ts":1595703343035,"err_code":"bad-request","err_msg":"order cancel fail"}
- 'base symbol error': BadSymbol,
- 'base date error': ExchangeError,
- 'api signature not valid': AuthenticationError,
- 'gateway internal error': ExchangeError,
- 'audit failed': ExchangeError,
- 'order queryorder invalid': BadRequest,
- 'market no need price': InvalidOrder,
- 'limit need price': InvalidOrder,
- 'userid not equal to account_id': ExchangeError,
- 'your balance is low': InsufficientFunds, # {"status":"error","ts":1595594160149,"err_code":"invalid-parameter","err_msg":"invalid size, valid range: [1,2000]"}
- 'address invalid cointype': ExchangeError,
- 'system exception': ExchangeError, # {"status":"error","ts":1595711862763,"err_code":"system exception","err_msg":"system exception"}
- '50003': ExchangeError, # No record
- '50004': BadSymbol, # The transaction pair is currently not supported or has been suspended
- '50006': PermissionDenied, # The account is forbidden to withdraw. If you have any questions, please contact customer service.
- '50007': PermissionDenied, # The account is forbidden to withdraw within 24 hours. If you have any questions, please contact customer service.
- '50008': RequestTimeout, # network timeout
- '50009': RateLimitExceeded, # The operation is too frequent, please try again later
- '50010': ExchangeError, # The account is abnormally frozen. If you have any questions, please contact customer service.
- '50014': InvalidOrder, # The transaction amount under minimum limits
- '50015': InvalidOrder, # The transaction amount exceed maximum limits
- '50016': InvalidOrder, # The price can't be higher than the current price
- '50017': InvalidOrder, # Price under minimum limits
- '50018': InvalidOrder, # The price exceed maximum limits
- '50019': InvalidOrder, # The amount under minimum limits
- '50020': InsufficientFunds, # Insufficient balance
- '50021': InvalidOrder, # Price is under minimum limits
- '50026': InvalidOrder, # Market price parameter error
- 'invalid order query time': ExchangeError, # start time is greater than end time; or the time interval between start time and end time is greater than 48 hours
- 'invalid start time': BadRequest, # start time is a date 30 days ago; or start time is a date in the future
- 'invalid end time': BadRequest, # end time is a date 30 days ago; or end time is a date in the future
- '20003': ExchangeError, # operation failed, {"status":"error","ts":1595730308979,"err_code":"bad-request","err_msg":"20003"}
- '01001': ExchangeError, # order failed, {"status":"fail","err_code":"01001","err_msg":"系统异常,请稍后重试"}
- },
- 'broad': {
- 'invalid size, valid range': ExchangeError,
- },
- },
- 'precisionMode': TICK_SIZE,
- 'options': {
- 'createMarketBuyOrderRequiresPrice': True,
- 'fetchMarkets': [
- 'spot',
- 'swap',
- ],
- 'parseOHLCV': {
- 'volume': {
- 'spot': 'amount',
- 'swap': 5,
- },
- },
- 'defaultType': 'spot', # 'spot', 'swap'
- 'accountId': None, # '1012838157',
- 'timeframes': {
- 'spot': {
- '1m': '1min',
- '5m': '5min',
- '15m': '15min',
- '30m': '30min',
- '1h': '60min',
- '2h': '120min',
- '4h': '240min',
- '6h': '360min',
- '12h': '720min',
- '1d': '1day',
- '1w': '1week',
- },
- 'swap': {
- '1m': '60',
- '5m': '300',
- '15m': '900',
- '30m': '1800',
- '1h': '3600',
- '2h': '7200',
- '4h': '14400',
- '6h': '21600',
- '12h': '43200',
- '1d': '86400',
- '1w': '604800',
- },
- },
- },
- })
- async def fetch_time(self, params={}):
- response = await self.dataGetCommonTimestamp(params)
- #
- # {
- # "status":"ok",
- # "data":"1595525139400"
- # }
- #
- return self.safe_integer(response, 'data')
- async def fetch_markets(self, params={}):
- types = self.safe_value(self.options, 'fetchMarkets')
- if not len(types):
- types = [
- self.options['defaultType'],
- ]
- result = []
- for i in range(0, len(types)):
- markets = await self.fetch_markets_by_type(types[i], params)
- result = self.array_concat(result, markets)
- return result
- def parse_markets(self, markets):
- result = []
- for i in range(0, len(markets)):
- result.append(self.parse_market(markets[i]))
- return result
- def parse_market(self, market):
- #
- # spot
- #
- # {
- # "base_currency":"btc",
- # "quote_currency":"usdt",
- # "symbol":"btc_usdt",
- # "tick_size":"2",
- # "size_increment":"4",
- # "status":"1",
- # "base_asset_precision":"8"
- # }
- #
- #
- # swap
- #
- # {
- # "symbol":"btcusd",
- # "underlying_index":"BTC",
- # "quote_currency":"USD",
- # "coin":"BTC",
- # "contract_val":"1",
- # "listing":null,
- # "delivery":["07:00:00","15:00:00","23:00:00"],
- # "size_increment":"0",
- # "tick_size":"1",
- # "forwardContractFlag":false,
- # "priceEndStep":5
- # }
- #
- id = self.safe_string(market, 'symbol')
- marketType = 'spot'
- spot = True
- swap = False
- baseId = self.safe_string_2(market, 'base_currency', 'coin')
- quoteId = self.safe_string(market, 'quote_currency')
- contractVal = self.safe_float(market, 'contract_val')
- if contractVal is not None:
- marketType = 'swap'
- spot = False
- swap = True
- base = self.safe_currency_code(baseId)
- quote = self.safe_currency_code(quoteId)
- symbol = id.upper()
- if spot:
- symbol = base + '/' + quote
- lotSize = self.safe_float_2(market, 'lot_size', 'trade_increment')
- tick_size = self.safe_float(market, 'tick_size')
- newtick_size = float('1e-' + self.number_to_string(tick_size))
- precision = {
- 'amount': self.safe_float(market, 'size_increment', lotSize),
- 'price': newtick_size,
- }
- minAmount = self.safe_float_2(market, 'min_size', 'base_min_size')
- status = self.safe_string(market, 'status')
- active = None
- if status is not None:
- active = (status == '1')
- fees = self.safe_value_2(self.fees, marketType, 'trading', {})
- return self.extend(fees, {
- 'id': id,
- 'symbol': symbol,
- 'base': base,
- 'quote': quote,
- 'baseId': baseId,
- 'quoteId': quoteId,
- 'info': market,
- 'type': marketType,
- 'spot': spot,
- 'swap': swap,
- 'active': active,
- 'precision': precision,
- 'limits': {
- 'amount': {
- 'min': minAmount,
- 'max': None,
- },
- 'price': {
- 'min': precision['price'],
- 'max': None,
- },
- 'cost': {
- 'min': precision['price'],
- 'max': None,
- },
- },
- })
- def amount_to_precision(self, symbol, amount):
- return self.decimal_to_precision(amount, TRUNCATE, self.markets[symbol]['precision']['amount'], DECIMAL_PLACES)
- async def fetch_markets_by_type(self, type, params={}):
- if type == 'spot':
- response = await self.dataGetCommonSymbols(params)
- #
- # {
- # "status":"ok",
- # "ts":1595526622408,
- # "data":[
- # {
- # "base_currency":"btc",
- # "quote_currency":"usdt",
- # "symbol":"btc_usdt",
- # "tick_size":"2",
- # "size_increment":"4",
- # "status":"1",
- # "base_asset_precision":"8"
- # },
- # ]
- # }
- #
- data = self.safe_value(response, 'data', [])
- return self.parse_markets(data)
- elif type == 'swap':
- response = await self.capiGetMarketContracts(params)
- #
- # {
- # "data":{
- # "contractApis":[
- # {
- # "instrument_id":"btcusd",
- # "underlying_index":"BTC",
- # "quote_currency":"USD",
- # "coin":"BTC",
- # "contract_val":"1",
- # "delivery":["07:00:00","15:00:00","23:00:00"],
- # "size_increment":"0",
- # "tick_size":"1",
- # "forwardContractFlag":false,
- # "priceEndStep":"5"
- # },
- # ]
- # },
- # "status":"ok",
- # "err_code":"00000"
- # }
- #
- return self.parse_markets(response)
- else:
- raise NotSupported(self.id + ' fetchMarketsByType does not support market type ' + type)
- async def fetch_currencies(self, params={}):
- response = await self.dataGetCommonCurrencys(params)
- #
- # {
- # "status":"ok",
- # "ts":1595537740466,
- # "data":[
- # "btc",
- # "bft",
- # "usdt",
- # "usdt-omni",
- # "usdt-erc20"
- # ]
- # }
- #
- result = {}
- data = self.safe_value(response, 'data', [])
- for i in range(0, len(data)):
- id = data[i]
- code = self.safe_currency_code(id)
- result[code] = {
- 'id': id,
- 'code': code,
- 'info': id,
- 'type': None,
- 'name': None,
- 'active': None,
- 'fee': None,
- 'precision': None,
- 'limits': {
- 'amount': {'min': None, 'max': None},
- 'price': {'min': None, 'max': None},
- 'cost': {'min': None, 'max': None},
- 'withdraw': {'min': None, 'max': None},
- },
- }
- return result
- async def fetch_order_book(self, symbol, limit=None, params={}):
- await self.load_markets()
- market = self.market(symbol)
- request = {
- 'symbol': market['id'],
- }
- method = None
- if market['spot']:
- method = 'dataGetMarketDepth'
- request['type'] = 'step0' # step0, step1, step2, step3, step4, step5, do not merge depth if step0
- elif market['swap']:
- method = 'capiGetMarketDepth'
- request['limit'] = 100 if (limit is None) else limit # max 100
- response = await getattr(self, method)(self.extend(request, params))
- #
- # spot
- #
- # {
- # "status":"ok",
- # "ch":"market.btc_usdt.depth.step0",
- # "ts":1595607628197,
- # "data":{
- # "id":"1595607628197",
- # "ts":"1595607628197",
- # "bids":[
- # ["9534.99","15.36160000000000000000"],
- # ["9534.85","0.14580000000000000000"],
- # ["9534.73","0.02100000000000000000"],
- # ],
- # "asks":[
- # ["9535.02","7.37160000000000000000"],
- # ["9535.03","0.09040000000000000000"],
- # ["9535.05","0.02180000000000000000"],
- # ]
- # }
- # }
- #
- # swap
- #
- # {
- # "asks":[
- # ["9579.0","119865",1],
- # ["9579.5","90069",1],
- # ["9580.0","256673",1],
- # ],
- # "bids":[
- # ["9578.5","2417",1],
- # ["9577.5","3024",1],
- # ["9577.0","21548",1],
- # ],
- # "timestamp":"1595664767349"
- # }
- #
- data = self.safe_value(response, 'data', response)
- timestamp = self.safe_integer_2(data, 'timestamp', 'ts')
- nonce = self.safe_integer(data, 'id')
- orderbook = self.parse_order_book(data, timestamp)
- orderbook['nonce'] = nonce
- return orderbook
- def parse_ticker(self, ticker, market=None):
- #
- # spot
- #
- # fetchTicker
- #
- # {
- # "id":"1595538241113",
- # "bid":["0.028474000000","1.139400000000"],
- # "ask":["0.028482000000","0.353100000000"],
- # "amount":"2850.6649",
- # "count":"818",
- # "open":"0.02821",
- # "close":"0.028474",
- # "low":"0.02821",
- # "high":"0.029091",
- # "vol":"79.4548693404"
- # }
- #
- # fetchTickers
- #
- # {
- # "amount":"30086.8095",
- # "count":"22450",
- # "open":"9525.11",
- # "close":"9591.81",
- # "low":"9510.68",
- # "high":"9659.7",
- # "vol":"286239092.250461",
- # "symbol":"btc_usdt"
- # }
- #
- # swap
- #
- # {
- # "instrument_id":"btcusd",
- # "last":"9574.5",
- # "best_ask":"9575.0",
- # "best_bid":"9574.0",
- # "high_24h":"9672",
- # "low_24h":"9512",
- # "volume_24h":"567697050",
- # "timestamp":"1595538450096"
- # }
- #
- timestamp = self.safe_integer_2(ticker, 'timestamp', 'id')
- symbol = None
- marketId = self.safe_string_2(ticker, 'instrument_id', 'symbol')
- if marketId in self.markets_by_id:
- market = self.markets_by_id[marketId]
- symbol = market['symbol']
- elif marketId is not None:
- parts = marketId.split('_')
- numParts = len(parts)
- if numParts == 2:
- baseId, quoteId = parts
- base = self.safe_currency_code(baseId)
- quote = self.safe_currency_code(quoteId)
- symbol = base + '/' + quote
- else:
- symbol = marketId
- if (symbol is None) and (market is not None):
- symbol = market['symbol']
- last = self.safe_float_2(ticker, 'last', 'close')
- open = self.safe_float(ticker, 'open')
- bidVolume = None
- askVolume = None
- bid = self.safe_value(ticker, 'bid')
- if bid is None:
- bid = self.safe_float(ticker, 'best_bid')
- else:
- bidVolume = self.safe_float(bid, 1)
- bid = self.safe_float(bid, 0)
- ask = self.safe_value(ticker, 'ask')
- if ask is None:
- ask = self.safe_float(ticker, 'best_ask')
- else:
- askVolume = self.safe_float(ask, 1)
- ask = self.safe_float(ask, 0)
- baseVolume = self.safe_float_2(ticker, 'amount', 'volume_24h')
- quoteVolume = self.safe_float(ticker, 'vol')
- vwap = self.vwap(baseVolume, quoteVolume)
- change = None
- percentage = None
- average = None
- if (last is not None) and (open is not None):
- change = last - open
- percentage = change / open * 100
- average = self.sum(open, last) / 2
- return {
- 'symbol': symbol,
- 'timestamp': timestamp,
- 'datetime': self.iso8601(timestamp),
- 'high': self.safe_float_2(ticker, 'high', 'high_24h'),
- 'low': self.safe_float_2(ticker, 'low', 'low_24h'),
- 'bid': bid,
- 'bidVolume': bidVolume,
- 'ask': ask,
- 'askVolume': askVolume,
- 'vwap': vwap,
- 'open': open,
- 'close': last,
- 'last': last,
- 'previousClose': None,
- 'change': change,
- 'percentage': percentage,
- 'average': average,
- 'baseVolume': baseVolume,
- 'quoteVolume': quoteVolume,
- 'info': ticker,
- }
- async def fetch_ticker(self, symbol, params={}):
- await self.load_markets()
- market = self.market(symbol)
- method = None
- if market['spot']:
- method = 'dataGetMarketDetailMerged'
- elif market['swap']:
- method = 'capiGetMarketTicker'
- request = {
- 'symbol': market['id'],
- }
- response = await getattr(self, method)(self.extend(request, params))
- #
- # spot
- #
- # {
- # "status":"ok",
- # "ch":"market.eth_btc.detail.merged",
- # "ts":1595538241474,
- # "data":{
- # "id":"1595538241113",
- # "bid":["0.028474000000","1.139400000000"],
- # "ask":["0.028482000000","0.353100000000"],
- # "amount":"2850.6649",
- # "count":"818",
- # "open":"0.02821",
- # "close":"0.028474",
- # "low":"0.02821",
- # "high":"0.029091",
- # "vol":"79.4548693404"
- # }
- # }
- #
- # swap
- #
- # {
- # "symbol":"btcusd",
- # "last":"9575.5",
- # "best_ask":"9576.0",
- # "best_bid":"9575.0",
- # "high_24h":"9646",
- # "low_24h":"9516",
- # "volume_24h":"516656839",
- # "timestamp":"1595664217405"
- # }
- #
- data = self.safe_value(response, 'data', response)
- return self.parse_ticker(data, market)
- async def fetch_tickers_by_type(self, type, symbols=None, params={}):
- await self.load_markets()
- method = None
- if type == 'spot':
- method = 'dataGetMarketTickers'
- elif type == 'swap':
- method = 'capiGetMarketTickers'
- response = await getattr(self, method)(params)
- #
- # spot
- #
- # {
- # "status":"ok",
- # "ts":1595542893250,
- # "data":[
- # {
- # "amount":"30086.8095",
- # "count":"22450",
- # "open":"9525.11",
- # "close":"9591.81",
- # "low":"9510.68",
- # "high":"9659.7",
- # "vol":"286239092.250461",
- # "symbol":"btc_usdt"
- # }
- # ]
- # }
- #
- # swap
- #
- # [
- # {
- # "symbol":"btcusd",
- # "last":"9572",
- # "best_ask":"9571.5",
- # "best_bid":"9570.5",
- # "high_24h":"9646",
- # "low_24h":"9516",
- # "volume_24h":"515401635",
- # "timestamp":"1595664479952"
- # }
- # ]
- #
- data = self.safe_value(response, 'data', response)
- timestamp = None
- if not isinstance(response, list):
- timestamp = self.safe_integer(response, 'ts')
- result = {}
- for i in range(0, len(data)):
- ticker = self.parse_ticker(self.extend({
- 'timestamp': timestamp,
- }, data[i]))
- symbol = ticker['symbol']
- result[symbol] = ticker
- return self.filter_by_array(result, 'symbol', symbols)
- async def fetch_tickers(self, symbols=None, params={}):
- defaultType = self.safe_string_2(self.options, 'fetchTickers', 'defaultType')
- type = self.safe_string(params, 'type', defaultType)
- return await self.fetch_tickers_by_type(type, symbols, self.omit(params, 'type'))
- def parse_trade(self, trade, market=None):
- #
- # fetchTrades(public)
- #
- # spot
- #
- # {
- # "id":"1",
- # "price":"9533.81",
- # "amount":"0.7326",
- # "direction":"sell",
- # "ts":"1595604964000"
- # }
- #
- # swap
- #
- # {
- # "trade_id":"670581881367954915",
- # "price":"9553.00",
- # "size":"20",
- # "side":"sell",
- # "timestamp":"1595605100004",
- # "symbol":"btcusd"
- # }
- #
- # spot fetchMyTrades(private)
- #
- # {
- # "id": 29555,
- # "order_id": 59378,
- # "match_id": 59335,
- # "symbol": "eth_usdt",
- # "type": "buy-limit",
- # "source": "api",
- # "price": "100.1000000000",
- # "filled_amount": "0.9845000000",
- # "filled_fees": "0.0019690000",
- # "created_at": 1494901400487
- # }
- #
- # fetchOrderTrades(private)
- #
- # spot
- #
- # {
- # "id":"614164775",
- # "created_at":"1596298860602",
- # "filled_amount":"0.0417000000000000",
- # "filled_fees":"0.0000834000000000",
- # "match_id":"673491702661292033",
- # "order_id":"673491720340279296",
- # "price":"359.240000000000",
- # "source":"接口",
- # "symbol":"eth_usdt",
- # "type":"buy-market"
- # }
- #
- # swap
- #
- # {
- # "trade_id":"6667390",
- # "symbol":"cmt_btcusdt",
- # "order_id":"525946425993854915",
- # "price":"9839.00",
- # "order_qty":"3466",
- # "fee":"-0.0000528407360000",
- # "timestamp":"1561121514442",
- # "exec_type":"M",
- # "side":"3"
- # }
- #
- symbol = None
- marketId = self.safe_string(trade, 'symbol')
- base = None
- quote = None
- if marketId in self.markets_by_id:
- market = self.markets_by_id[marketId]
- symbol = market['symbol']
- base = market['base']
- quote = market['quote']
- elif marketId is not None:
- parts = marketId.split('_')
- numParts = len(parts)
- if numParts == 2:
- baseId, quoteId = parts
- base = self.safe_currency_code(baseId)
- quote = self.safe_currency_code(quoteId)
- symbol = base + '/' + quote
- else:
- symbol = marketId.upper()
- if (symbol is None) and (market is not None):
- symbol = market['symbol']
- base = market['base']
- quote = market['quote']
- timestamp = self.safe_integer(trade, 'created_at')
- timestamp = self.safe_integer_2(trade, 'timestamp', 'ts', timestamp)
- price = self.safe_float(trade, 'price')
- amount = self.safe_float_2(trade, 'filled_amount', 'order_qty')
- amount = self.safe_float_2(trade, 'size', 'amount', amount)
- takerOrMaker = self.safe_string_2(trade, 'exec_type', 'liquidity')
- if takerOrMaker == 'M':
- takerOrMaker = 'maker'
- elif takerOrMaker == 'T':
- takerOrMaker = 'taker'
- side = self.safe_string_2(trade, 'side', 'direction')
- type = self.parse_order_type(side)
- side = self.parse_order_side(side)
- # if side is None:
- # orderType = self.safe_string(trade, 'type')
- # if orderType is not None:
- # parts = orderType.split('-')
- # side = self.safe_string_lower(parts, 0)
- # type = self.safe_string_lower(parts, 1)
- # }
- # }
- cost = None
- if amount is not None:
- if price is not None:
- cost = amount * price
- feeCost = self.safe_float(trade, 'fee')
- if feeCost is None:
- feeCost = self.safe_float(trade, 'filled_fees')
- else:
- feeCost = -feeCost
- fee = None
- if feeCost is not None:
- feeCurrency = base if (side == 'buy') else quote
- fee = {
- # fee is either a positive number(invitation rebate)
- # or a negative number(transaction fee deduction)
- # therefore we need to invert the fee
- # more about it https://github.com/ccxt/ccxt/issues/5909
- 'cost': feeCost,
- 'currency': feeCurrency,
- }
- orderId = self.safe_string(trade, 'order_id')
- id = self.safe_string_2(trade, 'trade_id', 'id')
- return {
- 'info': trade,
- 'timestamp': timestamp,
- 'datetime': self.iso8601(timestamp),
- 'symbol': symbol,
- 'id': id,
- 'order': orderId,
- 'type': type,
- 'takerOrMaker': takerOrMaker,
- 'side': side,
- 'price': price,
- 'amount': amount,
- 'cost': cost,
- 'fee': fee,
- }
- async def fetch_trades(self, symbol, limit=None, since=None, params={}):
- await self.load_markets()
- market = self.market(symbol)
- request = {
- 'symbol': market['id'],
- }
- method = None
- if market['spot']:
- method = 'dataGetMarketHistoryTrade'
- elif market['swap']:
- method = 'capiGetMarketTrades'
- if market['spot']:
- if limit is not None:
- request['size'] = limit # default 1, max 2000
- elif market['swap']:
- if limit is None:
- limit = 100 # default 20, max 100
- request['limit'] = limit
- response = await getattr(self, method)(self.extend(request, params))
- #
- # spot
- #
- # {
- # "status":"ok",
- # "ch":"market.btc_usdt.trade.detail",
- # "ts":1595604968430,
- # "data":{
- # "ts":"1595604964000",
- # "data":[
- # {"id":"1","price":"9533.81","amount":"0.7326","direction":"sell","ts":"1595604964000"},
- # {"id":"2","price":"9533.67","amount":"1.1591","direction":"buy","ts":"1595604961000"},
- # {"id":"3","price":"9533.67","amount":"1.5022","direction":"sell","ts":"1595604959000"},
- # ]
- # }
- # }
- #
- # swap
- #
- # [
- # {"trade_id":"670833198971748613","price":"9578.50","size":"5412","side":"sell","timestamp":"1595665018790","symbol":"btcusd"},
- # {"trade_id":"670833194240574915","price":"9579.00","size":"3972","side":"buy","timestamp":"1595665017662","symbol":"btcusd"},
- # {"trade_id":"670833194240573915","price":"9579.00","size":"1227","side":"buy","timestamp":"1595665017662","symbol":"btcusd"},
- # ]
- #
- trades = None
- if isinstance(response, list):
- trades = response
- else:
- data = self.safe_value(response, 'data', {})
- trades = self.safe_value_2(data, 'data', [])
- return self.parse_trades(trades, market, since, limit)
- def parse_ohlcv(self, ohlcv, market=None, timeframe='1m'):
- #
- # spot
- #
- # {
- # "id":"1594694700000",
- # "amount":"283.6811",
- # "count":"234",
- # "open":"9230.00",
- # "close":"9227.15",
- # "low":"9206.66",
- # "high":"9232.33",
- # "vol":"2618015.032504000000"
- # }
- #
- # swap
- #
- # [
- # "1594693800000",
- # "9240",
- # "9241",
- # "9222",
- # "9228.5",
- # "3913370",
- # "424.003616350563"
- # ]
- #
- options = self.safe_value(self.options, 'parseOHLCV', {})
- volume = self.safe_value(options, 'volume', {})
- if isinstance(ohlcv, list):
- volumeIndex = self.safe_string(volume, market['type'], 'amount')
- return [
- self.safe_integer(ohlcv, 0), # timestamp
- self.safe_float(ohlcv, 1), # Open
- self.safe_float(ohlcv, 2), # High
- self.safe_float(ohlcv, 3), # Low
- self.safe_float(ohlcv, 4), # Close
- # self.safe_float(ohlcv, 5), # Quote Volume
- # self.safe_float(ohlcv, 6), # Base Volume
- self.safe_float(ohlcv, volumeIndex), # Volume, bitget will return base volume in the 7th element for future markets
- ]
- else:
- volumeIndex = self.safe_value(volume, market['type'], 6)
- return [
- self.safe_integer(ohlcv, 'id'),
- self.safe_float(ohlcv, 'open'), # Open
- self.safe_float(ohlcv, 'high'), # High
- self.safe_float(ohlcv, 'low'), # Low
- self.safe_float(ohlcv, 'close'), # Close
- self.safe_float(ohlcv, volumeIndex), # Base Volume
- ]
- async def fetch_ohlcv(self, symbol, timeframe='1m', since=None, limit=None, params={}):
- await self.load_markets()
- market = self.market(symbol)
- request = {
- 'symbol': market['id'],
- }
- method = None
- type = market['type']
- options = self.safe_value(self.options, 'timeframes', {})
- intervals = self.safe_value(options, type, {})
- interval = self.safe_value(intervals, self.timeframes[timeframe])
- if market['spot']:
- method = 'dataGetMarketHistoryKline'
- request['period'] = interval
- if limit is not None:
- request['size'] = limit # default 150, max 1000
- elif market['swap']:
- duration = self.parse_timeframe(timeframe)
- method = 'capiGetMarketCandles'
- request['granularity'] = interval
- now = self.milliseconds()
- if since is None:
- if limit is None:
- limit = 1000
- request['start'] = self.iso8601(now - limit * duration * 1000)
- request['end'] = self.iso8601(now)
- else:
- request['start'] = self.iso8601(since)
- if limit is None:
- request['end'] = self.iso8601(now)
- else:
- request['end'] = self.iso8601(self.sum(since, limit * duration * 1000))
- response = await getattr(self, method)(self.extend(request, params))
- #
- # spot
- #
- # {
- # "status":"ok",
- # "ch":"market.btc_usdt.kline.15min",
- # "ts":1595594183874,
- # "data":[
- # {"id":"1594694700000","amount":"283.6811","count":"234","open":"9230.00","close":"9227.15","low":"9206.66","high":"9232.33","vol":"2618015.032504000000"},
- # {"id":"1594695600000","amount":"457.2904","count":"238","open":"9227.15","close":"9229.46","low":"9223.80","high":"9235.14","vol":"4220734.684570000000"},
- # {"id":"1594696500000","amount":"501.2353","count":"255","open":"9229.46","close":"9227.78","low":"9222.69","high":"9230.74","vol":"4625779.185006000000"},
- # ]
- # }
- #
- # swap
- #
- # [
- # ["1594764900000","9255.5","9261","9251","9255.5","3958946","427.742307964305"],
- # ["1594765800000","9255.5","9264","9252","9258","3609496","389.832756058107"],
- # ["1594766700000","9258","9260","9244.5","9250.5","3738600","403.97870345085"],
- # ]
- #
- candles = response
- if not isinstance(response, list):
- candles = self.safe_value(response, 'data', [])
- return self.parse_ohlcvs(candles, market, timeframe, since, limit)
- def parse_spot_balance(self, response):
- #
- # {
- # "status":"ok",
- # "ts":1595681450932,
- # "data":{
- # "list":[
- # {"balance":"0.0000000000000000","currency":"BTC","type":"trade"},
- # {"balance":"0.0000000000000000","currency":"BTC","type":"frozen"},
- # {"balance":"0.0000000000000000","currency":"BTC","type":"lock"},
- # ],
- # "id":"7420922606",
- # "type":"spot",
- # "state":"working"
- # }
- # }
- #
- result = {'info': response}
- data = self.safe_value(response, 'data')
- balances = self.safe_value(data, 'list')
- for i in range(0, len(balances)):
- balance = balances[i]
- currencyId = self.safe_string(balance, 'currency')
- code = self.safe_currency_code(currencyId)
- if not (code in result):
- account = self.account()
- result[code] = account
- type = self.safe_value(balance, 'type')
- if type == 'trade':
- result[code]['free'] = self.safe_float(balance, 'balance')
- elif (type == 'frozen') or (type == 'lock'):
- used = self.safe_float(result[code], 'used')
- result[code]['used'] = self.sum(used, self.safe_float(balance, 'balance'))
- return self.parse_balance(result)
- def parse_swap_balance(self, response):
- #
- # swap
- #
- # [
- # {"equity":"0","fixed_balance":"0","total_avail_balance":"0","margin":"0","realized_pnl":"0","unrealized_pnl":"0","symbol":"bchusd","margin_frozen":"0","timestamp":"1595673431547","margin_mode":"fixed","forwardContractFlag":false},
- # {"equity":"0","fixed_balance":"0","total_avail_balance":"0","margin":"0","realized_pnl":"0","unrealized_pnl":"0","symbol":"ethusd","margin_frozen":"0","timestamp":"1595673431573","margin_mode":"fixed","forwardContractFlag":false},
- # {"equity":"0","fixed_balance":"0","total_avail_balance":"0","margin":"0","realized_pnl":"0","unrealized_pnl":"0","symbol":"cmt_btcsusdt","margin_frozen":"0","timestamp":"1595673431577","margin_mode":"fixed","forwardContractFlag":true},
- # ]
- #
- #
- result = {}
- for i in range(0, len(response)):
- balance = response[i]
- marketId = self.safe_string(balance, 'symbol')
- symbol = marketId
- if marketId in self.markets_by_id:
- symbol = self.markets_by_id[marketId]['symbol']
- account = self.account()
- # it may be incorrect to use total, free and used for swap accounts
- account['total'] = self.safe_float(balance, 'equity')
- account['free'] = self.safe_float(balance, 'total_avail_balance')
- result[symbol] = account
- return self.parse_balance(result)
- async def fetch_accounts(self, params={}):
- request = {
- 'method': 'accounts',
- }
- response = await self.apiGetAccountAccounts(self.extend(request, params))
- #
- # {
- # "status":"ok",
- # "ts":1595679591824,
- # "data":[
- # {"id":"7420922606","type":"spot","state":"working"}
- # ]
- # }
- #
- data = self.safe_value(response, 'data', [])
- result = []
- for i in range(0, len(data)):
- account = data[i]
- accountId = self.safe_string(account, 'id')
- type = self.safe_string_lower(account, 'type')
- result.append({
- 'id': accountId,
- 'type': type,
- 'currency': None,
- 'info': account,
- })
- return result
- async def find_account_by_type(self, type):
- await self.load_markets()
- await self.load_accounts()
- accountsByType = self.group_by(self.accounts, 'type')
- accounts = self.safe_value(accountsByType, type)
- if accounts is None:
- raise ExchangeError(self.id + " findAccountByType() could not find an accountId with type '" + type + "', specify the 'accountId' parameter instead") # eslint-disable-line quotes
- numAccounts = len(accounts)
- if numAccounts > 1:
- raise ExchangeError(self.id + " findAccountByType() found more than one accountId with type '" + type + "', specify the 'accountId' parameter instead") # eslint-disable-line quotes
- return accounts[0]
- async def get_account_id(self, params):
- await self.load_markets()
- await self.load_accounts()
- defaultAccountId = self.safe_string(self.options, 'accountId')
- accountId = self.safe_string(params, 'accountId', defaultAccountId)
- if accountId is not None:
- return accountId
- defaultType = self.safe_string(self.options, 'defaultType', 'margin')
- type = self.safe_string(params, 'type', defaultType)
- params = self.omit(params, 'type')
- if type is None:
- raise ArgumentsRequired(self.id + " requires an 'accountId' parameter")
- account = await self.find_account_by_type(type)
- return account['id']
- async def fetch_balance(self, params={}):
- await self.load_markets()
- await self.load_accounts()
- defaultType = self.safe_string_2(self.options, 'fetchBalance', 'defaultType')
- type = self.safe_string(params, 'type', defaultType)
- if type is None:
- raise ArgumentsRequired(self.id + " fetchBalance requires a 'type' parameter, one of 'spot', 'swap'")
- method = None
- query = self.omit(params, 'type')
- if type == 'spot':
- accountId = await self.get_account_id(params)
- method = 'apiGetAccountsAccountIdBalance'
- query['account_id'] = accountId
- query['method'] = 'balance'
- elif type == 'swap':
- method = 'swapGetAccountAccounts'
- response = await getattr(self, method)(query)
- #
- # spot
- #
- # {
- # "status":"ok",
- # "ts":1595681450932,
- # "data":{
- # "list":[
- # {"balance":"0.0000000000000000","currency":"BTC","type":"trade"},
- # {"balance":"0.0000000000000000","currency":"BTC","type":"frozen"},
- # {"balance":"0.0000000000000000","currency":"BTC","type":"lock"},
- # ],
- # "id":"7420922606",
- # "type":"spot",
- # "state":"working"
- # }
- # }
- #
- # swap
- #
- # [
- # {"equity":"0","fixed_balance":"0","total_avail_balance":"0","margin":"0","realized_pnl":"0","unrealized_pnl":"0","symbol":"bchusd","margin_frozen":"0","timestamp":"1595673431547","margin_mode":"fixed","forwardContractFlag":false},
- # {"equity":"0","fixed_balance":"0","total_avail_balance":"0","margin":"0","realized_pnl":"0","unrealized_pnl":"0","symbol":"ethusd","margin_frozen":"0","timestamp":"1595673431573","margin_mode":"fixed","forwardContractFlag":false},
- # {"equity":"0","fixed_balance":"0","total_avail_balance":"0","margin":"0","realized_pnl":"0","unrealized_pnl":"0","symbol":"cmt_btcsusdt","margin_frozen":"0","timestamp":"1595673431577","margin_mode":"fixed","forwardContractFlag":true},
- # ]
- #
- return self.parse_balance_by_type(type, response)
- def parse_balance_by_type(self, type, response):
- if type == 'spot':
- return self.parse_spot_balance(response)
- elif type == 'swap':
- return self.parse_swap_balance(response)
- raise NotSupported(self.id + " fetchBalance does not support the '" + type + "' type(the type must be one of 'account', 'spot', 'margin', 'futures', 'swap')")
- def parse_order_status(self, status):
- statuses = {
- 'submitted': 'open',
- 'partial-filled': 'open',
- 'partial-canceled': 'canceled',
- 'filled': 'closed',
- 'canceled': 'canceled',
- '-2': 'failed',
- '-1': 'canceled',
- '0': 'open',
- '1': 'open',
- '2': 'closed',
- '3': 'open',
- '4': 'canceled',
- }
- return self.safe_string(statuses, status, status)
- def parse_order_side(self, side):
- sides = {
- 'buy-market': 'buy',
- 'sell-market': 'sell',
- 'buy-limit': 'buy',
- 'sell-limit': 'sell',
- '1': 'long', # open long
- '2': 'short', # open short
- '3': 'long', # close long
- '4': 'short', # close short
- }
- return self.safe_string(sides, side, side)
- def parse_order_type(self, type):
- types = {
- 'buy-market': 'market',
- 'sell-market': 'market',
- 'buy-limit': 'limit',
- 'sell-limit': 'limit',
- '1': 'open', # open long
- '2': 'open', # open short
- '3': 'close', # close long
- '4': 'close', # close short
- }
- return self.safe_string(types, type, type)
- def parse_order(self, order, market=None):
- #
- # createOrder
- #
- # spot
- #
- # {
- # "status":"ok",
- # "ts":1595792596056,
- # "data":671368296142774272
- # }
- #
- # swap
- #
- # {
- # "client_oid":"58775e54-0592-491c-97e8-e2369025f2d1",
- # "order_id":"671757564085534713"
- # }
- #
- # cancelOrder
- #
- # spot
- #
- # {
- # "status": "ok",
- # "ts": 1595818631279,
- # "data": 671368296142774272
- # }
- #
- # swap
- #
- # {
- # "order_id":"671757564085534713",
- # "client_oid":"58775e54-0592-491c-97e8-e2369025f2d1",
- # "symbol":"cmt_ethusdt",
- # "result":true,
- # "err_code":null,
- # "err_msg":null
- # }
- #
- # fetchOpenOrders, fetchClosedOrders, fetchOrder
- #
- # spot
- #
- # {
- # "account_id":"7420922606",
- # "amount":"0.1000000000000000",
- # "canceled_at":"1595872129618",
- # "created_at":"1595872089525",
- # "filled_amount":"0.000000000000",
- # "filled_cash_amount":"0.000000000000",
- # "filled_fees":"0.000000000000",
- # "finished_at":"1595872129618",
- # "id":"671701716584665088",
- # "price":"150.000000000000",
- # "source":"接口",
- # "state":"canceled",
- # "symbol":"eth_usdt",
- # "type":"buy-limit"
- # }
- #
- # swap
- #
- # {
- # "symbol":"cmt_ethusdt",
- # "size":"1",
- # "timestamp":"1595885546770",
- # "client_oid":"f3aa81d6-9a4c-4eab-bebe-ebc19da21cf2",
- # "createTime":"1595885521200",
- # "filled_qty":"0",
- # "fee":"0.00000000",
- # "order_id":"671758053112020913",
- # "price":"150.00",
- # "price_avg":"0.00",
- # "status":"0",
- # "type":"1",
- # "order_type":"0",
- # "totalProfits":null
- # }
- #
- id = self.safe_string(order, 'order_id')
- id = self.safe_string_2(order, 'id', 'data', id)
- timestamp = self.safe_integer_2(order, 'created_at', 'createTime')
- type = self.safe_string(order, 'type')
- side = self.parse_order_side(type)
- type = self.parse_order_type(type)
- # if (side != 'buy') and (side != 'sell'):
- # side = self.parse_order_side(type)
- # }
- # if (type != 'limit') and (type != 'market'):
- # if 'pnl' in order:
- # type = 'futures'
- # else:
- # type = 'swap'
- # }
- # }
- symbol = None
- marketId = self.safe_string(order, 'symbol')
- if marketId is not None:
- if marketId in self.markets_by_id:
- market = self.markets_by_id[marketId]
- else:
- symbol = marketId.upper()
- if (symbol is None) and (market is not None):
- symbol = market['symbol']
- amount = self.safe_float_2(order, 'amount', 'size')
- filled = self.safe_float_2(order, 'filled_amount', 'filled_qty')
- remaining = None
- if amount is not None:
- if filled is not None:
- amount = max(amount, filled)
- remaining = max(0, amount - filled)
- if type == 'market':
- remaining = 0
- cost = self.safe_float(order, 'filled_cash_amount')
- price = self.safe_float(order, 'price')
- average = self.safe_float(order, 'price_avg')
- if (average is None) and (filled is not None) and (cost is not None) and (filled > 0):
- average = cost / filled
- status = self.parse_order_status(self.safe_string_2(order, 'state', 'status'))
- feeCost = self.safe_float_2(order, 'filled_fees', 'fee')
- fee = None
- if feeCost is not None:
- feeCurrency = None
- fee = {
- 'cost': feeCost,
- 'currency': feeCurrency,
- }
- clientOrderId = self.safe_string(order, 'client_oid')
- return {
- 'info': order,
- 'id': id,
- 'clientOrderId': clientOrderId,
- 'timestamp': timestamp,
- 'datetime': self.iso8601(timestamp),
- 'lastTradeTimestamp': None,
- 'symbol': symbol,
- 'type': type,
- 'side': side,
- 'price': price,
- 'average': average,
- 'cost': cost,
- 'amount': amount,
- 'filled': filled,
- 'remaining': remaining,
- 'status': status,
- 'fee': fee,
- 'trades': None,
- }
- async def create_order(self, symbol, type, side, amount, price=None, params={}):
- await self.load_markets()
- await self.load_accounts()
- market = self.market(symbol)
- #
- # spot
- #
- # account_id True string Account ID, obtained using the accounts method. Currency transactions use the accountid of the'spot' account; for loan asset transactions, please use the accountid of the'margin' account
- # amount True string A limit order indicates the quantity of the order, when a market price buy order indicates how much money to buy, and when a market price sell order indicates how much currency to sell
- # price False string Order price, market order does not pass self parameter
- # source False string Order source api
- # symbol True string Trading pair btc_usdt, eth_btc ...
- # type True string Order Type buy-market: buy at market price, sell-market: sell at market price, buy-limit: buy at limit price, sell-limit: sell at limit price
- #
- # swap
- #
- # symbol String Yes Contract ID
- # client_oid String Yes customize order IDs to identify your orders.(Less than 50 characters without special characters,
- # size String Yes Quantity to buy or sell(value not equal to 0 or negative)
- # type String Yes 1 Open long 2Open short 3 Close long 4 Close short
- # order_type String Yes 0: Normal order(Unfilled and 0 imply normal limit order) 1: Post only 2: Fill or Kill 3: Immediate Or Cancel
- # match_price String Yes 0 Limit price 1 market price
- # price String No Price of each contract
- #
- request = {
- 'symbol': market['id'],
- }
- clientOrderId = self.safe_string_2(params, 'client_oid', 'clientOrderId', self.uuid())
- params = self.omit(params, ['client_oid', 'clientOrderId'])
- method = None
- if market['spot']:
- accountId = await self.get_account_id({
- 'type': market['type'],
- })
- method = 'apiPostOrderOrdersPlace'
- request['account_id'] = accountId
- request['method'] = 'place'
- request['type'] = side + '-' + type
- if type == 'limit':
- request['amount'] = self.amount_to_precision(symbol, amount)
- request['price'] = self.price_to_precision(symbol, price)
- elif type == 'market':
- # for market buy it requires the amount of quote currency to spend
- if side == 'buy':
- cost = self.safe_float(params, 'amount')
- createMarketBuyOrderRequiresPrice = self.safe_value(self.options, 'createMarketBuyOrderRequiresPrice', True)
- if createMarketBuyOrderRequiresPrice:
- if price is not None:
- if cost is None:
- cost = amount * price
- elif cost is None:
- raise InvalidOrder(self.id + " createOrder() requires the price argument with market buy orders to calculate total order cost(amount to spend), where cost = amount * price. Supply a price argument to createOrder() call if you want the cost to be calculated for you from price and amount, or, alternatively, add .options['createMarketBuyOrderRequiresPrice'] = False and supply the total cost value in the 'amount' argument or in the 'amount' extra parameter(the exchange-specific behaviour)")
- else:
- cost = amount if (cost is None) else cost
- request['amount'] = self.cost_to_precision(symbol, cost)
- elif side == 'sell':
- request['amount'] = self.amount_to_precision(symbol, amount)
- # ...
- elif market['swap']:
- request['order_type'] = '0' # '0' = Normal order, None and 0 imply a normal limit order, '1' = Post only, '2' = Fill or Kill, '3' = Immediate Or Cancel
- request['client_oid'] = clientOrderId
- orderType = self.safe_string(params, 'type')
- if orderType is None:
- raise ArgumentsRequired(self.id + " createOrder requires a type parameter, '1' = open long, '2' = open short, '3' = close long, '4' = close short for " + market['type'] + ' orders')
- request['size'] = self.amount_to_precision(symbol, amount)
- request['type'] = orderType
- # if match_price is set to '1', the price parameter will be ignored for market orders
- if type == 'limit':
- request['match_price'] = '0'
- request['price'] = self.price_to_precision(symbol, price)
- elif type == 'market':
- request['match_price'] = '1'
- method = 'swapPostOrderPlaceOrder'
- response = await getattr(self, method)(self.extend(request, params))
- #
- # spot
- #
- # {
- # "status":"ok",
- # "ts":1595792596056,
- # "data":"671368296142774272"
- # }
- #
- # swap
- #
- # {
- # "client_oid":"58775e54-0592-491c-97e8-e2369025f2d1",
- # "order_id":"671757564085534713"
- # }
- #
- return self.parse_order(response, market)
- async def cancel_order(self, id, symbol=None, params={}):
- await self.load_markets()
- market = None
- type = None
- if symbol is None:
- defaultType = self.safe_string_2(self.options, 'cancelOrder', 'defaultType')
- type = self.safe_string(params, 'type', defaultType)
- if type == 'spot':
- if symbol is None:
- raise ArgumentsRequired(self.id + ' cancelOrder requires a symbol argument for spot orders')
- else:
- market = self.market(symbol)
- type = market['type']
- query = self.omit(params, 'type')
- method = None
- request = {}
- if type == 'spot':
- method = 'apiPostOrderOrdersOrderIdSubmitcancel'
- request['order_id'] = id
- request['method'] = 'submitcancel'
- elif type == 'swap':
- method = 'swapPostOrderCancelOrder'
- request['orderId'] = id
- request['symbol'] = market['id']
- response = await getattr(self, method)(self.extend(request, query))
- #
- # spot
- #
- # {"status": "ok", "ts": 1595818631279, "data": 671368296142774272}
- #
- # swap
- #
- # {
- # "order_id":"671757564085534713",
- # "client_oid":"58775e54-0592-491c-97e8-e2369025f2d1",
- # "symbol":"cmt_ethusdt",
- # "result":true,
- # "err_code":null,
- # "err_msg":null
- # }
- #
- return self.parse_order(response, market)
- async def cancel_orders(self, ids, symbol=None, params={}):
- if symbol is None:
- raise ArgumentsRequired(self.id + ' cancelOrders requires a symbol argument')
- await self.load_markets()
- market = self.market(symbol)
- type = self.safe_string(params, 'type', market['type'])
- if type is None:
- raise ArgumentsRequired(self.id + " cancelOrders requires a type parameter(one of 'spot', 'swap').")
- request = {}
- method = None
- if type == 'spot':
- method = 'apiPostOrderOrdersBatchcancel'
- request['method'] = 'batchcancel'
- jsonIds = self.json(ids)
- parts = jsonIds.split('"')
- request['order_ids'] = ''.join(parts)
- elif type == 'swap':
- method = 'swapPostOrderCancelBatchOrders'
- request['symbol'] = market['id']
- request['ids'] = ids
- response = await getattr(self, method)(self.extend(request, params))
- #
- # spot
- #
- # {
- # "status": "ok",
- # "data": {
- # "success": [
- # "673451224205135872",
- # ],
- # "failed": [
- # {
- # "err-msg": "invalid record",
- # "order-id": "673451224205135873",
- # "err-code": "base record invalid"
- # }
- # ]
- # }
- # }
- #
- # swap
- #
- # {
- # "result":true,
- # "symbol":"cmt_btcusdt",
- # "order_ids":[
- # "258414711",
- # "478585558"
- # ],
- # "fail_infos":[
- # {
- # "order_id":"258414711",
- # "err_code":"401",
- # "err_msg":""
- # }
- # ]
- # }
- #
- return response
- async def fetch_order(self, id, symbol=None, params={}):
- if symbol is None:
- raise ArgumentsRequired(self.id + ' fetchOrder requires a symbol argument')
- await self.load_markets()
- market = self.market(symbol)
- type = self.safe_string(params, 'type', market['type'])
- if type is None:
- raise ArgumentsRequired(self.id + " fetchOrder requires a type parameter(one of 'spot', 'swap').")
- method = None
- request = {}
- if type == 'spot':
- clientOid = self.safe_string(params, 'client_oid')
- if clientOid is not None:
- method = 'apiPostOrderOrdersClientOid'
- request['client_oid'] = clientOid
- else:
- method = 'apiPostOrderOrdersOrderId'
- request['order_id'] = id
- request['method'] = 'getOrder'
- elif type == 'swap':
- method = 'swapGetOrderDetail'
- request['symbol'] = market['id']
- request['orderId'] = id
- query = self.omit(params, 'type')
- response = await getattr(self, method)(self.extend(request, query))
- #
- # spot
- #
- # {
- # "status":"ok",
- # "ts":1595897886717,
- # "data":{
- # "account_id":"7420922606",
- # "amount":"0.1000000000000000",
- # "canceled_at":"1595818631541",
- # "created_at":"1595792595897",
- # "filled_amount":"0.000000000000",
- # "filled_cash_amount":"0.000000000000",
- # "filled_fees":"0.000000000000",
- # "finished_at":"1595818631541",
- # "id":"671368296142774272",
- # "price":"150.000000000000",
- # "source":"接口",
- # "state":"canceled",
- # "symbol":"eth_usdt",
- # "type":"buy-limit"
- # }
- # }
- #
- #
- # swap
- #
- # {
- # "symbol":"cmt_ethusdt",
- # "size":"1",
- # "timestamp":"1595896459890",
- # "client_oid":"58775e54-0592-491c-97e8-e2369025f2d1",
- # "createTime":"1595885404607",
- # "filled_qty":"0",
- # "fee":"0",
- # "order_id":"671757564085534713",
- # "price":"150",
- # "price_avg":"0",
- # "status":"-1",
- # "type":"1",
- # "order_type":"0",
- # "totalProfits":"0"
- # }
- #
- data = self.safe_value(response, 'data', response)
- return self.parse_order(data, market)
- async def fetch_open_orders(self, symbol=None, since=None, limit=None, params={}):
- if symbol is None:
- raise ArgumentsRequired(self.id + ' fetchOpenOrders requires a symbol argument')
- await self.load_markets()
- market = self.market(symbol)
- type = self.safe_string(params, 'type', market['type'])
- request = {
- 'symbol': market['id'],
- }
- method = None
- if type == 'spot':
- method = 'apiGetOrderOrdersOpenOrders'
- # request['from'] = self.safe_string(params, 'from') # order id
- # request['direct'] = 'next' # or 'prev'
- request['method'] = 'openOrders'
- if limit is None:
- request['size'] = limit # default 100, max 1000
- elif type == 'swap':
- method = 'swapGetOrderOrders'
- request['status'] = '3' # 0 Failed, 1 Partially Filled, 2 Fully Filled 3 = Open + Partially Filled, 4 Canceling
- request['from'] = '1'
- request['to'] = '1'
- if limit is None:
- request['limit'] = 100 # default 100, max 100
- query = self.omit(params, 'type')
- response = await getattr(self, method)(self.extend(request, query))
- #
- # spot
- #
- #
- # {
- # "status":"ok",
- # "ts":1595875165865,
- # "data":[
- # {
- # "account_id":"7420922606",
- # "amount":"0.1000000000000000",
- # "canceled_at":"1595872129618",
- # "created_at":"1595872089525",
- # "filled_amount":"0.000000000000",
- # "filled_cash_amount":"0.000000000000",
- # "filled_fees":"0.000000000000",
- # "finished_at":"1595872129618",
- # "id":"671701716584665088",
- # "price":"150.000000000000",
- # "source":"接口",
- # "state":"canceled",
- # "symbol":"eth_usdt",
- # "type":"buy-limit"
- # }
- # ]
- # }
- #
- # swap
- #
- # [
- # {
- # "symbol":"cmt_ethusdt",
- # "size":"1",
- # "timestamp":"1595885546770",
- # "client_oid":"f3aa81d6-9a4c-4eab-bebe-ebc19da21cf2",
- # "createTime":"1595885521200",
- # "filled_qty":"0",
- # "fee":"0.00000000",
- # "order_id":"671758053112020913",
- # "price":"150.00",
- # "price_avg":"0.00",
- # "status":"0",
- # "type":"1",
- # "order_type":"0",
- # "totalProfits":null
- # }
- # ]
- #
- data = response
- if not isinstance(response, list):
- data = self.safe_value(response, 'data', [])
- return self.parse_orders(data, market, None, limit)
- async def fetch_closed_orders(self, symbol=None, since=None, limit=None, params={}):
- if symbol is None:
- raise ArgumentsRequired(self.id + ' fetchClosedOrders requires a symbol argument')
- await self.load_markets()
- market = self.market(symbol)
- type = self.safe_string(params, 'type', market['type'])
- request = {
- 'symbol': market['id'],
- }
- method = None
- if type == 'spot':
- method = 'apiGetOrderOrdersHistory'
- # Value range [((end_time) – 48h),(end_time)]
- # the query window is 48 hours at most
- # the window shift range is the last 30 days
- if since is not None:
- request['start_time'] = since
- # request['end_time'] = self.safe_integer(params, 'end_time')
- # request['from'] = self.safe_string(params, 'from') # order id
- # request['direct'] = 'next' # or 'prev'
- request['method'] = 'openOrders'
- if limit is None:
- request['size'] = limit # default 100, max 1000
- elif type == 'swap':
- method = 'swapGetOrderOrders'
- request['status'] = '2' # 0 Failed, 1 Partially Filled, 2 Fully Filled 3 = Open + Partially Filled, 4 Canceling
- request['from'] = '1'
- request['to'] = '1'
- if limit is None:
- request['limit'] = 100 # default 100, max 100
- query = self.omit(params, 'type')
- response = await getattr(self, method)(self.extend(request, query))
- #
- # spot
- #
- #
- # {
- # "status":"ok",
- # "ts":1595875165865,
- # "data":[
- # {
- # "account_id":"7420922606",
- # "amount":"0.1000000000000000",
- # "canceled_at":"1595872129618",
- # "created_at":"1595872089525",
- # "filled_amount":"0.000000000000",
- # "filled_cash_amount":"0.000000000000",
- # "filled_fees":"0.000000000000",
- # "finished_at":"1595872129618",
- # "id":"671701716584665088",
- # "price":"150.000000000000",
- # "source":"接口",
- # "state":"canceled",
- # "symbol":"eth_usdt",
- # "type":"buy-limit"
- # }
- # ]
- # }
- #
- # swap
- #
- # [
- # {
- # "symbol":"cmt_ethusdt",
- # "size":"1",
- # "timestamp":"1595885546770",
- # "client_oid":"f3aa81d6-9a4c-4eab-bebe-ebc19da21cf2",
- # "createTime":"1595885521200",
- # "filled_qty":"0",
- # "fee":"0.00000000",
- # "order_id":"671758053112020913",
- # "price":"150.00",
- # "price_avg":"0.00",
- # "status":"0",
- # "type":"1",
- # "order_type":"0",
- # "totalProfits":null
- # }
- # ]
- #
- data = response
- if not isinstance(response, list):
- data = self.safe_value(response, 'data', [])
- return self.parse_orders(data, market, None, limit)
- async def fetch_deposits(self, code=None, since=None, limit=None, params={}):
- if code is None:
- raise ArgumentsRequired(self.id + ' fetchDeposits requires a currency code argument')
- await self.load_markets()
- currency = self.currency(code)
- request = {
- 'currency': currency['id'],
- 'method': 'deposit_withdraw',
- 'type': 'deposit',
- 'size': 12,
- }
- response = await self.apiGetOrderDepositWithdraw(self.extend(request, params))
- #
- # {
- # "status": "ok",
- # "data": [
- # {
- # "id": 1171,
- # "type": "deposit",
- # "currency": "usdt",
- # "tx_hash": "ed03094b84eafbe4bc16e7ef766ee959885ee5bcb265872baaa9c64e1cf86c2b",
- # "amount": 7.457467,
- # "address": "rae93V8d2mdoUQHwBDBdM4NHCMehRJAsbm",
- # "address_tag": "100040",
- # "fee": 0,
- # "state": "safe",
- # "created_at": 1510912472199,
- # "updated_at": 1511145876575
- # },
- # ]
- # }
- #
- data = self.safe_value(response, 'data', [])
- return self.parse_transactions(data, currency, since, limit, params)
- async def fetch_withdrawals(self, code=None, since=None, limit=None, params={}):
- if code is None:
- raise ArgumentsRequired(self.id + ' fetchWithdrawals requires a currency code argument')
- await self.load_markets()
- currency = self.currency(code)
- request = {
- 'currency': currency['id'],
- 'method': 'deposit_withdraw',
- 'type': 'withdraw',
- 'size': 12,
- }
- response = await self.apiGetOrderDepositWithdraw(self.extend(request, params))
- #
- # {
- # "status": "ok",
- # "data": [
- # {
- # "id": 1171,
- # "type": "withdraw",
- # "currency": "usdt",
- # "tx_hash": "ed03094b84eafbe4bc16e7ef766ee959885ee5bcb265872baaa9c64e1cf86c2b",
- # "amount": 7.457467,
- # "address": "rae93V8d2mdoUQHwBDBdM4NHCMehRJAsbm",
- # "address_tag": "100040",
- # "fee": 0,
- # "state": "safe",
- # "created_at": 1510912472199,
- # "updated_at": 1511145876575
- # },
- # ]
- # }
- #
- data = self.safe_value(response, 'data', [])
- return self.parse_transactions(data, currency, since, limit, params)
- def parse_transaction_status(self, status):
- statuses = {
- # withdrawals
- 'WaitForOperation': 'pending', # 等待提现
- 'OperationLock': 'pending', # 初审锁定成功
- 'OperationSuccess': 'ok', # 提现成功
- 'Cancel': 'canceled', # 用户撤销
- 'Sure': 'ok', # 复审锁定成功
- 'Fail': 'failed', # 出币异常
- 'WaitForChainSure': 'ok', # 等待链上确认
- # deposits
- 'WAIT_0': 'pending', # 待确认
- 'WAIT_1': 'pending', # 待确认
- 'DATA_CHANGE': 'pending', # 待确认中
- 'SUCCESS': 'ok', # 充值成功
- }
- return self.safe_string(statuses, status, status)
- def parse_transaction(self, transaction, currency=None):
- #
- # fetchDeposits, fetchWithdrawals
- #
- # {
- # "id": 1171,
- # "type": "withdraw",
- # "currency": "usdt",
- # "tx_hash": "ed03094b84eafbe4bc16e7ef766ee959885ee5bcb265872baaa9c64e1cf86c2b",
- # "amount": 7.457467,
- # "address": "rae93V8d2mdoUQHwBDBdM4NHCMehRJAsbm",
- # "address_tag": "100040",
- # "fee": 0,
- # "state": "safe",
- # "created_at": 1510912472199,
- # "updated_at": 1511145876575
- # }
- #
- id = self.safe_string(transaction, 'id')
- address = self.safe_string(transaction, 'address')
- tag = self.safe_string(transaction, 'address_tag')
- tagFrom = None
- tagTo = tag
- addressFrom = None
- addressTo = address
- type = self.safe_string(transaction, 'type')
- if type == 'withdraw':
- type = 'withdrawal'
- elif type == 'deposit':
- type = 'deposit'
- currencyId = self.safe_string(transaction, 'currency')
- code = self.safe_currency_code(currencyId)
- amount = self.safe_float(transaction, 'amount')
- status = self.parse_transaction_status(self.safe_string(transaction, 'state'))
- txid = self.safe_string(transaction, 'tx_hash')
- timestamp = self.safe_integer(transaction, 'created_at')
- updated = self.safe_integer(transaction, 'updated_at')
- feeCost = self.safe_float(transaction, 'fee')
- fee = None
- if feeCost is not None:
- fee = {
- 'currency': code,
- 'cost': feeCost,
- }
- return {
- 'info': transaction,
- 'id': id,
- 'currency': code,
- 'amount': amount,
- 'addressFrom': addressFrom,
- 'addressTo': addressTo,
- 'address': address,
- 'tagFrom': tagFrom,
- 'tagTo': tagTo,
- 'tag': tag,
- 'status': status,
- 'type': type,
- 'updated': updated,
- 'txid': txid,
- 'timestamp': timestamp,
- 'datetime': self.iso8601(timestamp),
- 'fee': fee,
- }
- async def fetch_my_trades(self, symbol=None, since=None, limit=None, params={}):
- if symbol is None:
- raise ArgumentsRequired(self.id + ' fetchMyTrades requires a symbol argument')
- await self.load_markets()
- market = self.market(symbol)
- type = self.safe_string(params, 'type', market['type'])
- query = self.omit(params, 'type')
- if type == 'swap':
- raise ArgumentsRequired(self.id + ' fetchMyTrades is not supported for ' + type + ' type')
- #
- # spot
- #
- # POST /api/v1/order/matchresults Query current order, order history
- # symbol True string trading pair btc_usdt, eth_btc ...
- # types False string Query order type combination buy-market, sell-market, buy-limit, sell-limit
- # start_date False string Query start date, date format yyyy-mm-dd -61 days [-61day, end-date]
- # end_date False string Query end date, date format yyyy-mm-dd Now [start-date, now]
- # from False string Query start ID order record id
- # direct False string Query direction ‘next’ is default , the transaction record ID is sorted from large to small prev,next
- # size False string Query record size 100 <=100
- #
- request = {
- 'symbol': market['id'],
- 'method': 'matchresults',
- # 'types': 'buy-market,sell-market,buy-limit,sell-limit',
- # 'start_date': self.ymd(since),
- # 'end_date': self.ymd(self.milliseconds()),
- # 'size': 100,
- # 'direct': 'next',
- }
- if since is not None:
- request['start_date'] = self.ymd(since)
- end = self.sum(since, 2 * 24 * 60 * 60 * 1000)
- request['end_date'] = self.ymd(end)
- if limit is not None:
- request['size'] = limit # default 100, max 100
- response = await self.apiPostOrderMatchresults(self.extend(request, query))
- #
- # {
- # "status": "ok",
- # "data": [
- # {
- # "id": 29555,
- # "order_id": 59378,
- # "match_id": 59335,
- # "symbol": "eth_usdt",
- # "type": "buy-limit",
- # "source": "api",
- # "price": "100.1000000000",
- # "filled_amount": "0.9845000000",
- # "filled_fees": "0.0019690000",
- # "created_at": 1494901400487
- # }
- # ]
- # }
- #
- data = self.safe_value(response, 'data', [])
- return self.parse_trades(data, market, since, limit)
- async def fetch_order_trades(self, id, symbol=None, since=None, limit=None, params={}):
- if symbol is None:
- raise ArgumentsRequired(self.id + ' fetchOrderTrades requires a symbol argument')
- await self.load_markets()
- market = self.market(symbol)
- type = self.safe_string(params, 'type', market['type'])
- query = self.omit(params, 'type')
- method = None
- request = {}
- if type == 'spot':
- request['order_id'] = id
- request['method'] = 'matchresults'
- method = 'apiPostOrderOrdersOrderIdMatchresults'
- elif type == 'swap':
- request['orderId'] = id
- request['symbol'] = market['id']
- method = 'swapGetOrderFills'
- response = await getattr(self, method)(self.extend(request, query))
- #
- # spot
- #
- # {
- # "status":"ok",
- # "ts":1596298917277,
- # "data":[
- # {
- # "id":"614164775",
- # "created_at":"1596298860602",
- # "filled_amount":"0.0417000000000000",
- # "filled_fees":"0.0000834000000000",
- # "match_id":"673491702661292033",
- # "order_id":"673491720340279296",
- # "price":"359.240000000000",
- # "source":"接口",
- # "symbol":"eth_usdt",
- # "type":"buy-market"
- # }
- # ]
- # }
- #
- # swap
- #
- #
- # [
- # {
- # "trade_id":"6667390",
- # "symbol":"cmt_btcusdt",
- # "order_id":"525946425993854915",
- # "price":"9839.00",
- # "order_qty":"3466",
- # "fee":"-0.0000528407360000",
- # "timestamp":"1561121514442",
- # "exec_type":"M",
- # "side":"3"
- # }
- # ]
- #
- data = response
- if not isinstance(data, list):
- data = self.safe_value(response, 'data', [])
- return await self.parse_trades(data, market, since, limit)
- def sign(self, path, api='public', method='GET', params={}, headers=None, body=None):
- request = '/' + self.implode_params(path, params)
- if (api == 'capi') or (api == 'swap'):
- request = '/api/swap/' + self.version + request
- else:
- request = '/' + api + '/v1' + request
- query = self.omit(params, self.extract_params(path))
- url = self.implode_params(self.urls['api'][api], {'hostname': self.hostname}) + request
- if (api == 'data') or (api == 'capi'):
- if query:
- url += '?' + self.urlencode(query)
- elif api == 'swap':
- self.check_required_credentials()
- timestamp = str(self.milliseconds())
- auth = timestamp + method + request
- if method == 'POST':
- body = self.json(params)
- auth += body
- else:
- if params:
- query = self.urlencode(self.keysort(params))
- url += '?' + query
- auth += '?' + query
- signature = self.hmac(self.encode(auth), self.encode(self.secret), hashlib.sha256, 'base64')
- headers = {
- 'ACCESS-KEY': self.apiKey,
- 'ACCESS-SIGN': signature,
- 'ACCESS-TIMESTAMP': timestamp,
- 'ACCESS-PASSPHRASE': self.password,
- }
- if method == 'POST':
- headers['Content-Type'] = 'application/json'
- elif api == 'api':
- timestamp = str(self.milliseconds())
- auth = ''
- query = self.keysort(query)
- auth = self.rawencode(query)
- hash = self.hash(self.encode(self.secret), 'sha1')
- signed = auth
- signature = self.hmac(self.encode(auth), self.encode(hash), hashlib.md5)
- if len(auth) > 0:
- signed += '&'
- signed += 'sign=' + signature + '&req_time=' + timestamp + '&accesskey=' + self.apiKey
- if method == 'GET':
- if query:
- url += '?' + signed
- elif method == 'POST':
- url += '?sign=' + signature + '&req_time=' + timestamp + '&accesskey=' + self.apiKey
- body = auth
- headers = {
- 'Content-Type': 'application/x-www-form-urlencoded',
- }
- return {'url': url, 'method': method, 'body': body, 'headers': headers}
- def handle_errors(self, code, reason, url, method, headers, body, response, requestHeaders, requestBody):
- if not response:
- return # fallback to default error handler
- #
- # spot
- #
- # {"status":"fail","err_code":"01001","err_msg":"系统异常,请稍后重试"}
- # {"status":"error","ts":1595594160149,"err_code":"invalid-parameter","err_msg":"invalid size, valid range: [1,2000]"}
- # {"status":"error","ts":1595684716042,"err_code":"invalid-parameter","err_msg":"illegal sign invalid"}
- # {"status":"error","ts":1595700216275,"err_code":"bad-request","err_msg":"your balance is low!"}
- # {"status":"error","ts":1595700344504,"err_code":"invalid-parameter","err_msg":"invalid type"}
- # {"status":"error","ts":1595703343035,"err_code":"bad-request","err_msg":"order cancel fail"}
- # {"status":"error","ts":1595704360508,"err_code":"invalid-parameter","err_msg":"accesskey not null"}
- # {"status":"error","ts":1595704490084,"err_code":"invalid-parameter","err_msg":"permissions not right"}
- # {"status":"error","ts":1595711862763,"err_code":"system exception","err_msg":"system exception"}
- # {"status":"error","ts":1595730308979,"err_code":"bad-request","err_msg":"20003"}
- #
- # swap
- #
- # {"code":"40015","msg":"","requestTime":1595698564931,"data":null}
- # {"code":"40017","msg":"Order id must not be blank","requestTime":1595702477835,"data":null}
- # {"code":"40017","msg":"Order Type must not be blank","requestTime":1595698516162,"data":null}
- # {"code":"40301","msg":"","requestTime":1595667662503,"data":null}
- # {"code":"40017","msg":"Contract code must not be blank","requestTime":1595703151651,"data":null}
- # {"code":"40108","msg":"","requestTime":1595885064600,"data":null}
- # {"order_id":"513468410013679613","client_oid":null,"symbol":"ethusd","result":false,"err_code":"order_no_exist_error","err_msg":"订单不存在!"}
- #
- message = self.safe_string(response, 'err_msg')
- errorCode = self.safe_string_2(response, 'code', 'err_code')
- feedback = self.id + ' ' + body
- nonEmptyMessage = ((message is not None) and (message != ''))
- if nonEmptyMessage:
- self.throw_exactly_matched_exception(self.exceptions['exact'], message, feedback)
- self.throw_broadly_matched_exception(self.exceptions['broad'], message, feedback)
- nonZeroErrorCode = (errorCode is not None) and (errorCode != '00000')
- if nonZeroErrorCode:
- self.throw_exactly_matched_exception(self.exceptions['exact'], errorCode, feedback)
- if nonZeroErrorCode or nonEmptyMessage:
- raise ExchangeError(feedback) # unknown message