Ai
2 Star 4 Fork 3

Suuuch/Open-API-SDK-V5

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Account_api.py 4.57 KB
一键复制 编辑 原始数据 按行查看 历史
1834155205@qq.com 提交于 2021-04-26 10:44 +08:00 . 2021-4-26 add new function
from .client import Client
from .consts import *
class AccountAPI(Client):
def __init__(self, api_key, api_secret_key, passphrase, use_server_time=False, flag='1'):
Client.__init__(self, api_key, api_secret_key, passphrase, use_server_time, flag)
# Get Positions
def get_position_risk(self, instType=''):
params = {}
if instType:
params['instType'] = instType
return self._request_with_params(GET, POSITION_RISK, params)
# Get Balance
def get_account(self, ccy=''):
params = {}
if ccy:
params['ccy'] = ccy
return self._request_with_params(GET, ACCOUNT_INFO, params)
# Get Positions
def get_positions(self, instType='', instId=''):
params = {'instType': instType, 'instId': instId}
return self._request_with_params(GET, POSITION_INFO, params)
# Get Bills Details (recent 7 days)
def get_bills_detail(self, instType='', ccy='', mgnMode='', ctType='', type='', subType='', after='', before='',
limit=''):
params = {'instType': instType, 'ccy': ccy, 'mgnMode': mgnMode, 'ctType': ctType, 'type': type,
'subType': subType, 'after': after, 'before': before, 'limit': limit}
return self._request_with_params(GET, BILLS_DETAIL, params)
# Get Bills Details (recent 3 months)
def get_bills_details(self, instType='', ccy='', mgnMode='', ctType='', type='', subType='', after='', before='',
limit=''):
params = {'instType': instType, 'ccy': ccy, 'mgnMode': mgnMode, 'ctType': ctType, 'type': type,
'subType': subType, 'after': after, 'before': before, 'limit': limit}
return self._request_with_params(GET, BILLS_ARCHIVE, params)
# Get Account Configuration
def get_account_config(self):
return self._request_without_params(GET, ACCOUNT_CONFIG)
# Get Account Configuration
def get_position_mode(self, posMode):
params = {'posMode': posMode}
return self._request_with_params(POST, POSITION_MODE, params)
# Get Account Configuration
def set_leverage(self, lever, mgnMode, instId='', ccy='', posSide=''):
params = {'lever': lever, 'mgnMode': mgnMode, 'instId': instId, 'ccy': ccy, 'posSide': posSide}
return self._request_with_params(POST, SET_LEVERAGE, params)
# Get Maximum Tradable Size For Instrument
def get_maximum_trade_size(self, instId, tdMode, ccy='', px=''):
params = {'instId': instId, 'tdMode': tdMode, 'ccy': ccy, 'px': px}
return self._request_with_params(GET, MAX_TRADE_SIZE, params)
# Get Maximum Available Tradable Amount
def get_max_avail_size(self, instId, tdMode, ccy='', reduceOnly=''):
params = {'instId': instId, 'tdMode': tdMode, 'ccy': ccy, 'reduceOnly': reduceOnly}
return self._request_with_params(GET, MAX_AVAIL_SIZE, params)
# Increase / Decrease margin
def Adjustment_margin(self, instId, posSide, type, amt):
params = {'instId': instId, 'posSide': posSide, 'type': type, 'amt': amt}
return self._request_with_params(POST, ADJUSTMENT_MARGIN, params)
# Get Leverage
def get_leverage(self, instId, mgnMode):
params = {'instId': instId, 'mgnMode': mgnMode}
return self._request_with_params(GET, GET_LEVERAGE, params)
# Get the maximum loan of isolated MARGIN
def get_max_load(self, instId, mgnMode, mgnCcy):
params = {'instId': instId, 'mgnMode': mgnMode, 'mgnCcy': mgnCcy}
return self._request_with_params(GET, MAX_LOAN, params)
# Get Fee Rates
def get_fee_rates(self, instType, instId='', uly='', category=''):
params = {'instType': instType, 'instId': instId, 'uly': uly, 'category': category}
return self._request_with_params(GET, FEE_RATES, params)
# Get interest-accrued
def get_interest_accrued(self, instId='', ccy='', mgnMode='', after='', before='', limit=''):
params = {'instId': instId, 'ccy': ccy, 'mgnMode': mgnMode, 'after': after, 'before': before, 'limit': limit}
return self._request_with_params(GET, INTEREST_ACCRUED, params)
# Get interest-accrued
def get_interest_rate(self, ccy=''):
params = {'ccy': ccy}
return self._request_with_params(GET, INTEREST_RATE, params)
# Set Greeks (PA/BS)
def set_greeks(self, greeksType):
params = {'greeksType': greeksType}
return self._request_with_params(POST, SET_GREEKS, params)
# Get Maximum Withdrawals
def get_max_withdrawal(self, ccy=''):
params = {'ccy': ccy}
return self._request_with_params(GET, MAX_WITHDRAWAL, params)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/suuuch/Open-API-SDK-V5.git
git@gitee.com:suuuch/Open-API-SDK-V5.git
suuuch
Open-API-SDK-V5
Open-API-SDK-V5
main

搜索帮助