fwma#
API documentation for pandas_ta.overlap.fwma Python function.
- fwma(close, length=None, asc=None, offset=None, **kwargs)[source]#
Fibonacci’s Weighted Moving Average (FWMA)
Fibonacci’s Weighted Moving Average is similar to a Weighted Moving Average (WMA) where the weights are based on the Fibonacci Sequence.
Source: Kevin Johnson
- Calculation:
- Default Inputs:
length=10,
- def weights(w):
- def _compute(x):
return np.dot(w * x)
return _compute
fibs = utils.fibonacci(length - 1) FWMA = close.rolling(length)_.apply(weights(fibs), raw=True)
- Args:
close (pd.Series): Series of ‘close’s length (int): It’s period. Default: 10 asc (bool): Recent values weigh more. Default: True offset (int): How many periods to offset the result. Default: 0
- Kwargs:
fillna (value, optional): pd.DataFrame.fillna(value) fill_method (value, optional): Type of fill method
- Returns:
pd.Series: New feature generated.