这边请求数据时出现了下面这个数据问题,我这边每天请求这个code一天的数据时间是前一天18点到当天的18点
start_datetime = start_dt.replace(hour=18, minute=1, second=0)
end_datetime = end_dt.replace(hour=18, minute=0, second=0)
klines = api.get_kline_data_series(tq_code,duration_seconds=60,start_dt=start_datetime,end_dt=end_datetime)

这个好像只有我多个并发去请求不同code的时候才会出现,并发数不多就不会有这个问题