Initial commit: 首次建仓,建立目录结构

This commit is contained in:
FXY
2026-06-11 23:49:54 +08:00
commit 4038a476b5
9396 changed files with 2372905 additions and 0 deletions

View File

@ -0,0 +1,43 @@
# -*- 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.bequant as bequantRest
class bequant(hitbtc):
def describe(self) -> Any:
# eslint-disable-next-line new-cap
restInstance = bequantRest()
restDescribe = restInstance.describe()
extended = self.deep_extend(super(bequant, self).describe(), restDescribe)
return self.deep_extend(extended, {
'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',
},
})