Skip to content

Commit

Permalink
fixing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
bukosabino committed Dec 11, 2019
1 parent ade7613 commit f3fc7e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ta/volatility.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit f3fc7e1

Please sign in to comment.