-
Notifications
You must be signed in to change notification settings - Fork 16
/
readme.txt
51 lines (40 loc) · 1.52 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
QQ交流群340195342,点击加入:http://jq.qq.com/?_wv=1027&k=2ADNTk3
======
2015-2016 by 和哥
bftrader/福友量化: 支持手动交易,也支持程序化
从源码编译
======
照着做,很快能搞定。
doc\bftrader编译步骤-文字版.txt
doc\bftrader编译步骤-图文版.docx
手动交易
======
1. 下载bftrader发布包
下载地址: https://github.com/sunwangme/bftrader/releases
下载地址: http://pan.baidu.com/s/1nvgrNst
2. 运行ctpgateway
先ctp/config,注意地址前面加tcp://,其他和vnpy一致
程序化交易
======
用python怎么写策略?(可以使用gateway接口,也可以使用cta接口,目前用gateway接口)
这个就要看懂sdk!看懂sdk/api!
进入sdk目录,运行例子,就明白了!
1. 下载bftrader发布包
下载地址: https://github.com/sunwangme/bftrader/releases
下载地址: http://pan.baidu.com/s/1nvgrNst
2. 安装grpc for python
2.1 安装python python-2.7.11.msi
2.2 安装python库,安装包在 sdk/python_libs目录下
2.2.1 pip install six-xxx
2.2.2 pip install setuptools-xxx
2.2.3 pip install enum34-xxx
2.2.4 pip install futures-xxx
2.2.5 pip install protobuf-xxx
2.2.6 pip install grpcio-xxx
3. 写策略,调试策略
3.1 运行ctpgateway.exe,datafeed.exe
3.2 点击ctpgateway的net/netStart,点击datafeed的net/netStart
3.3 运行python/datarecorder.py,以连接ctpgateway datafeed
3.4 点击ctpgateway的ctp/ctpStart
3.5 可以看到datarecorder.py跑起来啦
(完)