33 lines
950 B
Python
33 lines
950 B
Python
|
# encoding: UTF-8
|
|||
|
|
|||
|
from vnzb import *
|
|||
|
|
|||
|
# 在OkCoin网站申请这两个Key,分别对应用户名和密码
|
|||
|
apiKey = '你的apiKey'
|
|||
|
secretKey = '你的secreKey'
|
|||
|
|
|||
|
# 创建API对象
|
|||
|
api = ZB_Sub_Spot_Api()
|
|||
|
|
|||
|
api.connect_Subpot(apiKey, secretKey, True)
|
|||
|
|
|||
|
sleep(3)
|
|||
|
|
|||
|
# api.login()
|
|||
|
# api.subscribeSpotTicker("ltc_btc")
|
|||
|
# api.subscribeSpotDepth("ltc_btc")
|
|||
|
# api.subscribeSpotTrades("ltc_btc")
|
|||
|
#api.subscribeSpotKlines("bch_btc","30min")
|
|||
|
|
|||
|
#api.spotTrade("btc_qc", 1 , "50" , "0.01")
|
|||
|
'''
|
|||
|
{"message":"鎿嶄綔鎴愬姛","no":"0","data":"{entrustId:2017121051685}","code":1000,"channel":"btcqc_order","success":true}
|
|||
|
{"message":"鎿嶄綔鎴愬姛","no":"0","data":"{entrustId:2017121051713}","code":1000,"channel":"btcqc_order","success":true}
|
|||
|
'''
|
|||
|
#api.spotUserInfo()
|
|||
|
|
|||
|
#api.spotCancelOrder("btc_qc", "2017121051685")
|
|||
|
#api.spotOrderInfo("btc_qc","2017121051713")
|
|||
|
|
|||
|
#api.spotGetOrders("btc_qc" , "1" , "1")
|
|||
|
#api.spotGetOrderSignOrderTradeType("btc_qc", 1 , 10 , 1)
|