0
我計算簡單移動平均:計算加權移動平均使用大熊貓軋製方法
def sma(data_frame, length=15):
# TODO: Be sure about default values of length.
smas = data_frame.Close.rolling(window=length, center=False).mean()
return smas
使用滾動功能可以計算加權移動平均?由於我讀in the documentation,我認爲我必須通過win_type參數。但我不確定我必須選擇哪一個。
這是加權移動平均的definition。
由於提前,
查看支持加權的['np.average'](http://docs.scipy.org/doc/numpy/reference/generated/numpy.average.html)。 –
我會在[Github](https://github.com/pydata/pandas)上提出問題。這些文件的確有誤導性。 [它建議](https://github.com/pydata/pandas/blob/37f95cef85834207db0930e863341efb285e38a2/doc/source/computation.rst#id49)可以通過_custom__weights_,但它並不能解釋人們會如何去做,而且在存儲庫中沒有這樣做的例子。 – dangom