1 Star 0 Fork 12

robbie98cn/LSSY

forked from wxylssy/LSSY 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
backtest.py 511 Bytes
一键复制 编辑 原始数据 按行查看 历史
wxylssy 提交于 2021-04-13 21:46 . commit
#! /usr/bin/python3
from QuotationServer import runQuotation
from QuotationServer import comm
import redisRW
import sys
import datetime
from decimal import *
def run(common, start_date, end_date):
try:
start_date = datetime.datetime.strptime(start_date, '%Y-%m-%d')
end_date = datetime.datetime.strptime(end_date, '%Y-%m-%d')
except:
print('日期格式错误')
return
runQuotation.backtest_start(common, start_date, end_date)
if __name__ == '__main__':
pass
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/thinkabc/LSSY.git
git@gitee.com:thinkabc/LSSY.git
thinkabc
LSSY
LSSY
master

搜索帮助