class dataFeed(btfeed.GenericCSVData):
params = (
('dtformat', '%m%d%Y %H:%M:%S'),
('datetime', 0),
('open', 1),
('high', 2),
('low', 3),
('close', 4),
('volume', 5),
('openinterest', -1)
)ValueError: time data '12/24/2020 10:00' does not match format '%m%d%Y %H:%M:%S'这是时间戳的样子-- 12/24/2020 10:00:00 AM
发布于 2020-12-26 18:27:55
从字符串中删除斜杠:
dt_string = dt_string.replace("/", "")或更改'dtformat'
('dtformat', '%m/%d/%Y %H:%M'),https://stackoverflow.com/questions/65455384
复制相似问题