请教tbpy的write_fundamental写入数据后,TBQ读出来是无效值
麻烦老师看一下是什么原因呢,非常感谢! tbpy代码如下: import tbpy import datetime tbpy.init() #设定品种周期,从 TBquant 读取历史行情数据 symbols=['rb000.SHFE'] freq='1d' begintime=datetime.datetime.strptime('20220601','%Y%m%d') endtime=datetime.datetime.strptime('20220621','%Y%m%d') bars=tbpy.get_history(symbols, freq, begintime, endtime, fields=None, timeout='30s') code=symbols[0] ddrb=bars[code] c=ddrb['close'] for i in range(ddrb['time'].shape[0]): print(code, "wave", ddrb['time'][i], float(c[i])) tbpy.write_fundamental(code, "wave", ddrb['time'][i], float(c[i])) TBQ代码如下: Params Vars Dic<Numeric> fft("wave"); Events OnBar(ArrayRef<Integer> indexs) { range[0:0] { PlotNumeric("fft",fft); } }