Files
ccxt_with_mt5/ccxt/pro/bequant.py
lz_db 0fab423a18 add
2025-11-16 12:31:03 +08:00

44 lines
1.6 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.hitbtc import hitbtc
from ccxt.base.types import Any
import ccxt.async_support.hitbtc as hitbtcRest
import ccxt.async_support.bequant as bequantRest
class bequant(hitbtc):
def describe(self) -> Any:
# eslint-disable-next-line new-cap
describeExtended = self.get_describe_for_extended_ws_exchange(bequantRest(), hitbtcRest(), super(bequant, self).describe())
return self.deep_extend(describeExtended, {
'id': 'bequant',
'name': 'Bequant',
'countries': ['MT'], # Malta
'pro': True,
'urls': {
'logo': 'https://user-images.githubusercontent.com/1294454/55248342-a75dfe00-525a-11e9-8aa2-05e9dca943c6.jpg',
'api': {
'public': 'https://api.bequant.io/api/3',
'private': 'https://api.bequant.io/api/3',
'ws': {
'public': 'wss://api.bequant.io/api/3/ws/public',
'private': 'wss://api.bequant.io/api/3/ws/trading',
},
},
'www': 'https://bequant.io',
'doc': [
'https://api.bequant.io/',
],
'fees': [
'https://bequant.io/fees-and-limits',
],
'referral': 'https://bequant.io',
},
})