Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
vnpy committed Mar 22, 2024
2 parents 84b25ad + 868be7e commit 61517bf
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ VeighNa是一套基于Python的开源量化交易系统开发框架,在开源

在使用VeighNa进行二次开发(策略、模块等)的过程中有任何疑问,请查看[**VeighNa项目文档**](https://www.vnpy.com/docs/cn/index.html),如果无法解决请前往[**官方社区论坛**](https://www.vnpy.com/forum/)的【提问求助】板块寻求帮助,也欢迎在【经验分享】板块分享你的使用心得!

针对VeighNa的金融机构用户,创建了一个专门的【VeighNa机构用户群】(QQ群号:676499931),主要分享机构应用方面相关的问题,如:银行间市场接入、资管O32系统、分布式部署等内容。请注意本群只对金融机构用户开放,加群时请注明:姓名-机构-部门。
**想要获取更多关于VeighNa的资讯信息?** 请扫描下方二维码添加小助手加入【VeighNa社区交流微信群】:

<p align="center">
<img src ="https://vnpy.oss-cn-shanghai.aliyuncs.com/github_wx.png"/, width=250>
</p>


## 功能特点

Expand Down
16 changes: 12 additions & 4 deletions install.bat
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
@ECHO OFF
SET python=%1
SET pypi_index=%2
IF %python%"" == "" SET python=python
IF %pypi_index%"" == "" SET pypi_index=https://pypi.douban.com/simple
IF NOT %pypi_index%"" == "" SET pypi_index=--index-url %pypi_index%
@ECHO ON

:: Upgrade pip & wheel
python -m pip install --upgrade pip wheel
%python% -m pip install --upgrade pip wheel %pypi_index%

::Install prebuild wheel
python -m pip install --extra-index-url https://pypi.vnpy.com TA_Lib==0.4.24
%python% -m pip install --extra-index-url https://pypi.vnpy.com TA_Lib==0.4.24

::Install Python Modules
python -m pip install -r requirements.txt
%python% -m pip install -r requirements.txt %pypi_index%

:: Install VeighNa
python -m pip install .
%python% -m pip install .

0 comments on commit 61517bf

Please sign in to comment.