为啥会有这种报错啊,我设置没啥问题啊,请大佬帮帮忙看看咋回事https://bigquant.com/experimentshare/5d75c7c28bc34f79846cb3708ffb8b90
更新时间:2023-10-09 06:10
name 'get_extend_calendar_with_tradingdays' is not defined
这是怎么回事呀?
从报错来看,是整个代码中没有get
更新时间:2022-12-20 14:20
代码:在高频回测模块的k线处理函数定义如下:
# 回测引擎:每日数据处理函数,每天执行一次
def bigquant_run(context, data):
# 相隔几天(hold_days)进行一下换仓
if context.trading_day_index % context.hold_days != 0:
return
# 按日期过滤得到今日的预测数据
ranker_prediction = context.ranker_prediction[
context.ran
更新时间:2022-11-09 01:23