You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 2, 2022. It is now read-only.
BBands MA argument is silently ignored if it is not a pd.Series.
As the fool that I am I gave an integer as MA argument instead of a pd.Series and did not notice my mistake immediately.
What I expected: If it is not a supported type an error should be raised or a warning should be printed.
Example:
from finta import TA
# MA argument is not correct type and will be ignored
bbands = TA.BBANDS(df, 20, MA=50)