mirror of
https://github.com/wassname/pandas-ta.git
synced 2026-07-26 13:27:44 +08:00
Fixed issue 409 for coding mistake
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user