等级: 机构版
- 注册:
- 2021-5-20
- 曾用名:
|
def init(context):
# 在context中设置一些参数
sh_code = get_blocks ('上海A股',0)
sz_code = get_blocks ('深圳A股',0)
sz_cy_code = get_blocks ('深圳创业',0)
code_list = sh_code+sz_code+sz_cy_code
context.s1 = code_list
def handle_bar(context):
close = history_bars(context.s1, context.long_period+1, 'self', 'close',True)
“ close = history_bars(context.s1, context.long_period+1, 'self', 'close',True) ” 这条语句回测时报错,<built-in function_bars>returned a result with an error set 请问上面问题,本人刚开始学python,请与解惑
|
|