From 748e6b3547916e0df31ec74d8e9e3b3fb92849b0 Mon Sep 17 00:00:00 2001 From: zengbin93 Date: Sat, 21 Dec 2024 19:04:44 +0800 Subject: [PATCH] 0.9.62 remove pandas_ta --- czsc/utils/ta.py | 1 + 1 file changed, 1 insertion(+) diff --git a/czsc/utils/ta.py b/czsc/utils/ta.py index 72d4e9b43..69fab3170 100644 --- a/czsc/utils/ta.py +++ b/czsc/utils/ta.py @@ -526,6 +526,7 @@ def CHOP(high, low, close, **kwargs): :return: pd.Series, New feature generated. """ import pandas_ta + return pandas_ta.chop(high=high, low=low, close=close, **kwargs)