72 lines
2.9 KiB
Python
72 lines
2.9 KiB
Python
# -*- 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.pro.binance import binance
|
|
from ccxt.base.types import Any
|
|
|
|
import ccxt.async_support.binanceus as binanceusRest
|
|
|
|
|
|
class binanceus(binance):
|
|
|
|
def describe(self) -> Any:
|
|
# eslint-disable-next-line new-cap
|
|
restInstance = binanceusRest()
|
|
restDescribe = restInstance.describe()
|
|
parentWsDescribe = super(binanceus, self).describe_data()
|
|
extended = self.deep_extend(restDescribe, parentWsDescribe)
|
|
return self.deep_extend(extended, {
|
|
'id': 'binanceus',
|
|
'name': 'Binance US',
|
|
'countries': ['US'], # US
|
|
'certified': False,
|
|
'urls': {
|
|
'logo': 'https://user-images.githubusercontent.com/1294454/65177307-217b7c80-da5f-11e9-876e-0b748ba0a358.jpg',
|
|
'api': {
|
|
'ws': {
|
|
'spot': 'wss://stream.binance.us:9443/ws',
|
|
},
|
|
'web': 'https://www.binance.us',
|
|
'sapi': 'https://api.binance.us/sapi/v1',
|
|
'wapi': 'https://api.binance.us/wapi/v3',
|
|
'public': 'https://api.binance.us/api/v3',
|
|
'private': 'https://api.binance.us/api/v3',
|
|
'v3': 'https://api.binance.us/api/v3',
|
|
'v1': 'https://api.binance.us/api/v1',
|
|
},
|
|
'www': 'https://www.binance.us',
|
|
'referral': 'https://www.binance.us/?ref=35005074',
|
|
'doc': 'https://github.com/binance-us/binance-official-api-docs',
|
|
'fees': 'https://www.binance.us/en/fee/schedule',
|
|
},
|
|
'has': {
|
|
'createOrderWithTakeProfitAndStopLossWs': False,
|
|
'createReduceOnlyOrderWs': False,
|
|
'createStopLossOrderWs': False,
|
|
'createTakeProfitOrderWs': False,
|
|
'fetchPositionForSymbolWs': False,
|
|
'fetchPositionsForSymbolWs': False,
|
|
'fetchPositionsWs': False,
|
|
'fetchPositionWs': False,
|
|
'unWatchPositions': False,
|
|
'watchLiquidations': False,
|
|
'watchLiquidationsForSymbols': False,
|
|
'watchMarkPrice': False,
|
|
'watchMarkPrices': False,
|
|
'watchMyLiquidations': False,
|
|
'watchMyLiquidationsForSymbols': False,
|
|
'watchPosition': False,
|
|
'watchPositions': False,
|
|
},
|
|
'options': {
|
|
'fetchCurrencies': False,
|
|
'quoteOrderQty': False,
|
|
'defaultType': 'spot',
|
|
'fetchMarkets': {
|
|
'types': ['spot'],
|
|
},
|
|
},
|
|
})
|