背景最近一直在玩vn.py,上一篇文章vn.py开发环境搭建(windows)介绍了如何搭建二次开发环境,解决了一些搭建环境过程中遇到的坑。那么接下来这篇文章将解决运行期间的第一个问题。开始vn.py1.环境部署完成之后,启动examples/vn_trader/run.py,弹出启动页面。具体搭建过程参考vn.py开发环境搭建(windows)。2。连接CTP,点击系统->连接CTP,弹出
分类:
其他好文 时间:
2020-01-27 00:12:14
阅读次数:
648
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img qhGszh5N 1579337680354)(https://user images.githubusercontent.com/58975336/72661253 e8eeae00 3a12 11ea 93ee 2d4 ...
分类:
Web程序 时间:
2020-01-25 10:26:27
阅读次数:
122
Dimensionality in statistics refers to how many attributes a dataset has. For example, healthcare data is notorious for having vast amounts of variabl ...
分类:
其他好文 时间:
2020-01-24 20:05:14
阅读次数:
98
0. 1. examples: def fib(n): if n == 1 or n == 2: result = 1 else result = fib(n-1) + fib(n-2) return result this is very in-efficient, O(2^n), and we ...
分类:
其他好文 时间:
2020-01-24 09:28:30
阅读次数:
77
Download Here is the document DynkinDiag.pdf Dynkin diagram, root system is a big mystery of my undergraduate life. Here I present three examples tha ...
分类:
其他好文 时间:
2020-01-21 00:37:09
阅读次数:
85
A technology stack comprises the layers of components or services that are used to provide a software solution or application. Traditional examples in ...
分类:
其他好文 时间:
2020-01-20 20:52:48
阅读次数:
82
1.FM:GUI_DOWNLOAD 这是最基本的方法,对应 CLASS: CL_GUI_FRONTEND_SERVICES 的方法 GUI_DOWNLOAD 注意参数 FILENAME 以xls 结尾这样在保存时可以保存为 excel. 示例如下 data:itab like table of ma ...
分类:
其他好文 时间:
2020-01-20 19:27:43
阅读次数:
158
在日常的开发过程中,我们常常要处理不同来源的数据。数据可能来自不可靠的外部系统、不可靠的用户输入和甚至设计有误的数据库表,因此,对数据有效性进行验证是必要的工作。 开源工具ABAP Data Validator是一个使用ABAP开发的数据验证工具,它可以简化开发者在这方面的工作。本文将介绍它的用法和 ...
分类:
其他好文 时间:
2020-01-20 17:30:22
阅读次数:
106
There are n cities and n?-?1 roads in the Seven Kingdoms, each road connects two cities and we can reach any city from any other by the roads. Theon a ...
分类:
其他好文 时间:
2020-01-18 16:46:11
阅读次数:
79