为什么我不能从 mplfinance 导入 candlestick_ohlc

Why can't I import candlestick_ohlc from mplfinance

所以我已经能够使用 pip 成功安装 mplfinance 并且当我单独导入它时我没有收到任何错误。虽然当我这样做时: from mplfinance import candlestick_ohlc 我收到错误 ImportError: cannot import name 'candlestick_ohlc' from 'mplfinance' 我再次检查了命令提示符,它说它已成功安装 mplfinance。为什么我会收到此错误消息?

您不必再导入 'candlestick_ohlc'。

'mplfinance.plot()' 默认为 ohlc 样式图表。

这些链接提供了很好的示例。第二个使用烛台。您可以更改该参数。

https://towardsdatascience.com/trading-toolbox-03-ohlc-charts-95b48bb9d748

https://openwritings.net/pg/mplfinance/python-draw-candlestickohlc-using-new-mplfinance

据我了解,金融 Matplotlib 已经发生变化,因此:

要在安装了新的 mplfinance 包的情况下访问旧的 API,请更改 statments

来自:

from mpl_finance import 

至:

    from mplfinance.original_flavor import candlestick_ohlc

然后它应该可以正常工作。