[TOC]
- 获取币种列表
get_currencies(self)
- 钱包账户信息
get_wallet(self)
- 单一币种账户信息
get_currency(self, symbol)
- 提币
coin_withdraw(self, currency, amount, destination, withdraw_address, trade_pwd, fee)
- 提币手续费
get_coin_fee(self, symbol='')
- 查询最近所有币种的提币记录
get_coins_withdraw_record(self)
- 查询单个币种提币记录
get_coin_withdraw_record(self, symbol)
- 账单流水查询
get_ledger_record(self, froms, to, limit, currency='', ctype='')
- 获取充值地址
get_top_up_address(self, symbol)
- 获取所有币种充值记录
get_top_up_records(self)
- 获取单个币种充值记录
get_top_up_record(self, symbol)
- 资金划转
coin_transfer(self, currency, amount, account_from, account_to, sub_account='', instrument_id='')
- 币币账户信息
get_account_info(self)
- 单一币种账户信息
get_coin_account_info(self, symbol)
- 账单流水查询
get_ledger(self, symbol)
- 下单
take_order(self, otype, side, instrument_id, size, client_oid='', price='', funds=''):
- 撤销指定订单
revoke_order(self, oid, instrument_id)
- 批量撤销订单
revoke_orders(self, instrument_id, order_ids)
- 获取订单列表
get_orders_list(self, status, instrument_id, froms, to, limit)
- 获取订单信息
get_order_info(self, oid, instrument_id)
- 获取成交明细
get_fills(self, order_id, instrument_id, froms, to, limit)
- 获取币对信息
get_coin_info(self)
- 获取深度数据
get_depth(self, instrument_id, size, depth)
- 获取全部ticker信息
get_ticker(self)
- 获取某个ticker信息
get_specific_ticker(self, instrument_id)
- 获取成交数据
get_deal(self, instrument_id, froms, to, limit)
- 获取K线数据
get_kline(self, instrument_id, start, end, granularity)
- 合约持仓信息
get_position(self)
- 单个合约持仓信息
get_specific_position(self, instrument_id)
- 合约账户信息
get_accounts(self)
- 某个币种合约账户信息
get_coin_account(self, symbol)
- 获取合约币种杠杆倍数
get_leverage(self, symbol)
- 设定合约币种杠杆倍数
def set_leverage(self, symbol, instrument_id='', direction='', leverage=10)
- 账单流水查询
get_ledger(self, symbol)
- 平掉所有仓位
revoke_position(self, position_data)
- 下单
take_order(self, instrument_id, otype, price, size, margin_mode, match_price, client_oid)
- 批量下单
take_orders(self, instrument_id, order_data, leverage)
- 撤销指定订单
revoke_order(self, order_id)
- 批量撤销订单
revoke_orders(self, instrument_id)
- 获取订单列表
get_order_list(self, status, froms, to, limit, instrument_id='')
- 获取订单信息
get_order_info(self, order_id, instrument_id)
- 获取成交明细
get_fills(self, order_id, instrument_id, froms, to, limit)
- 获取合约信息
get_products(self)
- 获取深度数据
get_depth(self, instrument_id, size)
- 获取全部ticker信息
get_ticker(self)
- 获取某个ticker信息
get_specific_ticker(self, instrument_id)
- 获取成交数据(新版)
get_trades(self, instrument_id, froms, to, limit):
- 获取K线数据
get_kline(self, instrument_id, granularity, start='', end='')
- 获取指数信息
get_index(self, instrument_id)
- 获取法币汇率
get_rate(self)
- 获取预估交割价
get_estimated_price(self, instrument_id)
- 获取平台总持仓量
get_holds(self, instrument_id):
- 获取当前限价
get_limit(self, instrument_id)
- 获取爆仓单
get_liquidation(self, instrument_id)
- 获取标记价格
get_mark_price(self, instrument_id)
- 币币杠杆账户信息
get_account_info(self)
- 单一币对账户信息
get_specific_account(self, instrument_id)
- 账单流水查询
get_ledger_record(self, instrument_id, froms, to, limit)
- 杠杆配置信息
get_config_info(self)
- 某个杠杆配置信息
get_specific_config_info(self, instrument_id)
- 获取借币记录
get_borrow_coin(self, status, froms, to, limit)
- 某账户借币记录
get_specific_borrow_coin(self, instrument_id, status, froms, to, limit)
- 借币
borrow_coin(self, instrument_id, currency, amount)
- 还币
repayment_coin(self, borrow_id, instrument_id, currency, amount)
- 下单
take_order(self, instrument_id, otype, side, size, client_oid='', price='', margin_trading='')
- 撤销指定订单
revoke_order(self, oid)
- 批量撤销订单
revoke_orders(self, instrument_id)
- 获取订单列表
get_order_list(self, status, froms, to, limit, instrument_id)
- 获取订单信息
get_order_info(self, oid)
- 获取成交明细
def get_fills(self, order_id, instrument_id, froms, to, limit)
- 组合账户信息
get_accounts(self)
- 单一币种账户信息
get_account(self, symbol)
- 账单流水查询
get_ledger(self, symbol)
- 下单
take_order(self, otype, quoto_currency, amount, size, ett, client_oid='')
- 撤销指定订单
revoke_order(self, order_id)
- 获取订单列表(新版本)
get_order_list(self, status, ett, otype, froms, to, limit)
- 获取订单信息
get_specific_order(self, order_id)
- 获取组合成分
get_constituents(self, ett)
- 获取ETT清算历史定价
get_define_price(self, ett)