Merge pull request #1704 from 1122455801/index_update_datarecorder

[Add] Index update datarecorder
This commit is contained in:
vn.py 2019-05-15 14:14:00 +08:00 committed by GitHub
commit 952fbfd360
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View File

@ -231,6 +231,10 @@ register_event()函数分别注册2种事件EVENT_CONTRACT、EVENT_TICK
## 移除记录
移除记录操作输入需要移除合约品种的本地代码如rb1905.SHFE。该本地代码必须在“Tick记录列表” 或者“K线记录列表”中。若要移除Tick记录只需在”Tick记录“那一栏上点击”移除“按钮即可。
下面展示代码运作原理:
- 从tick_recordings字典移除vt_symbol
- 调用save_setting()函数保存json配置文件
- 推送最新的tick_recordings字典来继续记录行情原来移除合约品种不再记录。
@ -252,6 +256,8 @@ register_event()函数分别注册2种事件EVENT_CONTRACT、EVENT_TICK
## 停止记录
停止记录操作:只需手动关闭行情记录模块窗口就停止记录行情。
- 记录行情状态改为False, 停止while循环
- 调用join()函数关掉线程。

View File

@ -43,6 +43,12 @@
* [穷举算法](cta_backtester.md#穷举算法)
* [遗传算法](cta_backtester.md#遗传算法)
* [行情记录](datarecoder.md)
* [加载启动](datarecoder.md#加载启动)
* [开始收录](datarecoder.md#开始收录)
* [移除记录](datarecoder.md#移除记录)
* [停止记录](datarecoder.md#停止记录)
* [交易接口](gateway.md)
* [如何连接](gateway.md#如何连接)