金融支持和阻力射线

mplfinance support and resistance rays

我想在图表上绘制支撑和阻力,但我只想要从特定日期到当前的数据。附上图片以供参考我的目标和成就。这是我使用的代码。

mf.plot(amzn, mav = (34, 50, 200), type = 'candle',hlines=dict(hlines=values,colors=color),
volume = True, figratio = (10,5),
style = 'binance', title = name,
tight_layout = True,)

期望的输出 [1]: https://i.stack.imgur.com/SakHf.png

实际产量 [2]: https://i.stack.imgur.com/w99RN.png

根据定义,hlines kwarg 从左到右横跨整个情节。

您需要做的是改用 alines kwarg。有关如何使用 alines.

的更多信息,请参阅 using lines 教程