vnpy/vn.okcoin/README.md
chenxy123 b41b44d4a2 1. 增加CTA模块的回测参数优化功能
2. 修复CTP接口中持仓价格的bug
3. 量衍更新vnokcoin的比特币期货合约交易功能
2016-07-01 23:07:41 +08:00

37 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# vn.okcoin
贡献者:量衍投资
### 简介
OkCoin的比特币交易接口基于Websocket API开发实现了以下功能
1. 发送、撤销委托
2. 查询委托、持仓、资金、成交历史
3. 实时行情、成交、资金更新的推送
### 特点
相比较于[OkCoin官方](http://github.com/OKCoin/websocket/tree/master/python)给出的Python API实现vn.okcoin的一些特点
1. 同时支持OkCoin的中国站和国际站交易根据用户连接的站点会在内部自动切换结算货币CNY、USD
2. 采用面向对象的接口设计模式接近国内CTP接口的风格并对主动函数的调用参数做了大幅简化
3. 数据解包和签名生成两个热点函数使用了更加高效的实现方式
### 参数命名
函数的参数命名针对金融领域用户的习惯做了一些修改,具体对应如下:
* expiry原生命名的contract_type
* order: 原生命名的match_price
* leverage原生命名的lever_rate
* page原生命名的current_page
* length原生命名的page_length
### API版本
日期2016-06-29
链接:[http://www.okcoin.com/about/ws_getStarted.do](http://www.okcoin.com/about/ws_getStarted.do)