Skip to content

Commit

Permalink
0.9.62 remove pandas_ta
Browse files Browse the repository at this point in the history
  • Loading branch information
zengbin93 committed Dec 21, 2024
1 parent 161c523 commit 380f5c3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion czsc/utils/ta.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"""
import numpy as np
import pandas as pd
import pandas_ta


def SMA(close: np.array, timeperiod=5):
Expand Down Expand Up @@ -526,6 +525,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)


Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,5 @@ pytz
flask
scipy
requests_toolbelt
pandas-ta
networkx
rs_czsc>=0.1.2

0 comments on commit 380f5c3

Please sign in to comment.