Skip to content

Commit

Permalink
Removed fill mentod
Browse files Browse the repository at this point in the history
  • Loading branch information
XotEmBotZ committed Jan 31, 2025
1 parent 0c5564e commit 814eec8
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions pandas_ta/momentum/td_seq.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,6 @@ def td_seq(
if "fillna" in kwargs:
up_seq.fillna(kwargs["fillna"], inplace=True)
down_seq.fillna(kwargs["fillna"], inplace=True)

if "fill_method" in kwargs:
up_seq.fillna(method=kwargs["fill_method"], inplace=True)
down_seq.fillna(method=kwargs["fill_method"], inplace=True)

# Name and Category
up_seq.name = "TD_SEQ_UPa" if show_all else "TD_SEQ_UP"
down_seq.name = "TD_SEQ_DNa" if show_all else "TD_SEQ_DN"
Expand Down

0 comments on commit 814eec8

Please sign in to comment.