diff --git a/ta/volatility.py b/ta/volatility.py index 8b17548c..f039e96e 100644 --- a/ta/volatility.py +++ b/ta/volatility.py @@ -114,7 +114,7 @@ def bollinger_wband(self) -> pd.Series: pandas.Series: New feature generated. """ wband = self._hband - self._lband - wband = self.check_fillna(wband, value=0) + wband = self._check_fillna(wband, value=0) return pd.Series(wband, name='bbiwband') def bollinger_hband_indicator(self) -> pd.Series: