ricequant / rqalpha

A extendable, replaceable Python algorithmic backtest && trading framework supporting multiple securities
http://rqalpha.io
Other
5.39k stars 1.62k forks source link

print函数咨询 #303

Closed hrtddpcx closed 6 years ago

hrtddpcx commented 6 years ago

1. RQAlpha的版本

C:\Users\Peng>rqalpha version Current Version: (3, 0, 9)

print函数打印结果,都有一个日期+INFO前缀,怎么能去掉这个前缀? 2018-04-20 INFO **

Cuizi7 commented 6 years ago

rqalpha 将策略中的 print 替换为了 logger.info,以方便框架对日志的统一管理。 不想使用框架提供的日志管理的话可以尝试 pprint.pprint 或 six.print_ 等第三方库提供的函数。

hrtddpcx commented 6 years ago

能介绍一下怎么做到改写print的吗?看了logger.py和base.py,没看懂-_-#

Cuizi7 commented 6 years ago

https://github.com/ricequant/rqalpha/blob/master/rqalpha/main.py 请参考 create_base_scope 函数。

hrtddpcx commented 6 years ago

想学习理解你们这个事件驱动框架,有没有什么书推荐?