hist_data = ContextInfo.get_market_data_ex(
fields=[],
stock_code=[stock_code],
period='1m',
count=-1,
start_time=start_time,
end_time=end_time,
# fill_data=True,
)
在回测系统中我回测2025-11-01到2025-11-03号数据,1m级别数据只能拿到当前收盘价数据为什么,而且历史时间内的数据都是为当前交易日今天收盘价数据。是不能这样用吗? |