我的源程序如下:
mz_bars= history_bars('IC03',10,'1d','close')
print('中证500期货 10天收盘价为:')
print(mz_bars)
print('')
mz_bars= history_bars('SH905',10,'1d','close')
print('中证500现货 10天收盘价为:')
print(mz_bars)
print('')
输出结果如下:
09:36:54 > 中证500期货 10天收盘价为:
09:36:54 > [6438. 6380.60009766 6463. 6372.79980469 6399.
6243.60009766 6126.39990234 6042.79980469 6212.39990234 6215.20019531]
09:36:54 >
09:36:54 > 中证500现货 10天收盘价为:
09:36:54 > [6222.37988281]
为什么history_bars()的返回结果对第一个是正确的,但对第2个只有一个返回值?