尝试使用 mpf.plot 绘制数据框后出现 TypeError

TypeError after trying to plot dataframe with mpf.plot

我有一个包含以下列的熊猫数据框:

现在我想用 mpf.plot 绘制图表。但我收到以下错误:

如何避免上述类型错误消息? 我确实使用以下命令设置了 df 索引:

dfnew_plot = dfnew_plot.set_index('Date')

您的索引数据类型不正确。需要转换为:

dfnew_plot.index = pd.to_datetime(dfnew_plot.index)