From 9b569c36c7b0f0b4159230635095afb2e604bf2e Mon Sep 17 00:00:00 2001 From: Lluis Date: Thu, 21 May 2020 17:00:13 +0200 Subject: [PATCH] Remove add_prefix_suffix function --- pandas_ta/core.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pandas_ta/core.py b/pandas_ta/core.py index 7ff65e8..c599f90 100644 --- a/pandas_ta/core.py +++ b/pandas_ta/core.py @@ -1114,6 +1114,5 @@ class AnalysisIndicators(BasePandasObject): close = self._get_column(close, 'close') from pandas_ta.event.rsi_event import rsi_event result = rsi_event(close=close, above_val=above_val, below_val=below_val, length=length, drift=drift, offset=offset, **kwargs) - self._add_prefix_suffix(result, **kwargs) self._append(result, **kwargs) return result \ No newline at end of file