当我们使用 (mpl.finance mav) 函数时,会绘制什么样的移动平均线

what kind of moving average will be drawn when we use (mpl.finance mav) function

我的问题是当我们使用 mplfinance mpf.plot 函数绘制烛台并使用 mav 函数绘制移动平均线时。它是什么样的移动平均线?是指数移动平均线还是简单移动平均线?


fig, axlist = mpf.plot(daily,type='candle',mav=(20),volume=True, style='blueskies',returnfig=True)

mplfinance mpf.plot(data,...,mav=...) 做一个简单的移动平均线(尽管它也允许移动平均线移动)。

The code for the moving average is here.

具体实际计算为on this line of code.

修改代码以允许其他类型的移动平均线应该不是很困难,特别是如果您想做出贡献的话。

也就是说,同时,可以在外部计算替代移动平均线 plotted with mpf.make_addplot()