代码报错——type object 'datetime.datetime' has no attribute 'timedelta'
由supertrim258创建,最终由small_q 被浏览 30 用户
153 # 今天和上次交易的时间相隔hold_days就全部卖出 datetime.timedelta(context.options['hold_days'])也可以换成自己需要的天数,比如datetime.timedelta(5) -->
154 if data.current_dt - positions_lastdate[instrument]>=datetime.timedelta(0) and data.can_trade(context.symbol(instrument)):
155 context.order_target_percent(context.symbol(instrument), 0)
156 current_stopdays_stock.append(instrument)
AttributeError: type object 'datetime.datetime' has no attribute 'timedelta'
怎么改
\