-
I have a RSI indicator inside |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Exactly. Just fill the nan with some value, e.g.: def RSI(*args):
rsi = _RSI(*args)
return pd.Series(rsi).fillna(method='backfill') |
Beta Was this translation helpful? Give feedback.
Exactly. Just fill the nan with some value, e.g.: