#获取期货过去10日的收盘价数据
close = data.attribute_history(a, ['close'], 10, '1d', True,fq = 'pre')
#计算10日均线价格
MA10=close.values[-10:].mean()
#获取前收盘价
values=data.current(a)
price = values[a].prev_close
if(price<MA10 and account.subportfolios.positions[future].total_amount<5):
order(future,5,type='short',pindex=1)
log.info("买入 %s 5手" %(future))
if(price>MA10 and account.subportfolios.positions[future].total_amount>0):
order(future,-5,type='short',pindex=1)
log.info("平仓")
pass
关于期货已经开仓的空单 如何平仓 这个平仓代码是什么