vnpy/README.md

85 lines
2.7 KiB
Markdown
Raw Normal View History

2017-04-30 14:45:43 +00:00
Fork版本主要改进如下
1、增加CtaLineBarCtaPositionCtaPolicy,UtlSinaClient等基础组件
2、增加自动断线重连功能在开盘前启动收盘后重连CTP
3、修改回测引擎提供实时计算净值
4、修改CtaTemplate增加了未执行订单的跟踪
2017-04-30 14:46:43 +00:00
5、提供非GUI界面启动的主程序。
2017-04-30 14:45:43 +00:00
2017-06-13 09:15:42 +00:00
启动模式:
可视化python vtMain.py
命令行python noUiMain.py
2018-01-30 06:57:27 +00:00
2018年1月升级至py3版本
2017-06-13 09:15:42 +00:00
2018-01-30 06:57:27 +00:00
大佳
QQ/Wechat28888502
2016-07-02 03:12:44 +00:00
2018-02-05 07:31:40 +00:00
--------------------------------------------------------------------------------------------
FAQ
1、CentOS的环境
# 安装解压包支持
yum install bzip2.x86_64
# 安装nodejs支持request
yum -y install nodejs
# 支持ssl
yum -y install openssl-devel
# 安装python开发库
yum install python-devel.x86_64
#安装boost
wget http://sourceforge.net/projects/boost/files/boost/1.55.0/boost_1_55_0.tar.gz/download
mv download boost_1_55_0.tar.gz
tar -xvzf boost_1_55_0.tar.gz
cd boost_1_55_0/
./bootstrap.sh --with-libraries=atomic,date_time,exception,filesystem,iostreams,locale,program_options,regex,signals,system,test,thread,timer,log
./b2 install
2、Ubuntu环境
apt-get install gcc
apt-get install make
apt-get install libssl-dev
apt-get install freetds-dev
apt-get install python-dev
apt-get install mpi-default-dev
apt-get install libicu-dev
apt-get install libbz2-dev
apt-get install libboost-thread-dev
apt-get install libboost-python-dev
apt-get install cython
sudo apt-get install nodejs
sudo apt-get update && sudo apt-get install build-essential
3、创建多版本环境
wget -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-4.3.1-Linux-x86_64.sh
chmod a+x Anaconda3-4.3.1-Linux-x86_64.sh
./Anaconda3-4.3.1-Linux-x86_64.sh
# 配置为国内的镜像
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
选择其中一个来创建
conda create --name py27 python=2.7
conda create --name py35 python =3.5
激活的例子
source activate py27
source activate py35
3、碰到的问题importError: libGL.so.1: cannot open shared object file: No such file or directory
ubuntu下sudo apt install libgl1-mesa-glx
centOS下sudo yum install mesa-libGL.x86_64
4、碰到的问题version `GLIBCXX_3.4.21' not found
conda install libgcc
--------------------------------------------------------------------------------------------
2018-01-30 06:57:27 +00:00
# vn.py - 基于python的开源交易平台开发框架
https://github.com/vnpy/vnpy
2018-02-05 07:31:40 +00:00
--------------------------------------------------------------------------------------------
2016-07-02 03:12:44 +00:00
### License
MIT