OKCoin是一个数字货币交易平台,提供多种交易服务,包括现货交易、期货交易、期权交易等。在Python中,可以使用OKCoin的API来进行实盘交易。以下是一个使用Python实现OKCoin实盘交易的示例代码:
import okapi
创建OKAPI客户端
client = okapi.Client('your_api_key', 'your_api_secret')
获取账户信息
response = client.account_info()
account = response['account']
创建交易订单
price = 10000
amount = 10
order = client.new_order(symbol='okb_usd', type='spot', side='buy', price=price, amount=amount)
提交交易订单
client.place_order(order)
查询订单状态
order_id = order['order_id']
response = client.order_info(order_id)
if response['status'] == 'filled':
print('交易成功,成交价:', response['price'], ', 成交数量:', response['amount'])
else:
print('交易失败,错误信息:', response['error_message'])