Fixed issue 409 for coding mistake

This commit is contained in:
jhleong
2021-10-14 10:46:23 +08:00
parent bc3b292bf1
commit 6df0ee70d4
+1 -1
View File
@@ -42,7 +42,7 @@ def bbands(close, length=None, std=None, ddof=0, mamode=None, talib=None, offset
mid = mid.shift(offset)
upper = upper.shift(offset)
bandwidth = bandwidth.shift(offset)
percent = bandwidth.shift(offset)
percent = percent.shift(offset)
# Handle fills
if "fillna" in kwargs: