We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 404eb26 commit e38ade1Copy full SHA for e38ade1
talib/test_polars.py
@@ -3,6 +3,7 @@
3
from nose.tools import assert_equals, assert_is_instance, assert_true
4
5
import talib
6
+from talib import abstract
7
from talib.test_data import series, assert_np_arrays_equal
8
9
def test_MOM():
@@ -51,6 +52,6 @@ def test_TEVA():
51
52
"volume": np.random.uniform(low=0.0, high=100.0, size=size).astype("float32")
53
}
54
)
- tema = ta.TEMA(df, timeperiod=9)
55
+ tema = abstract.TEMA(df, timeperiod=9)
56
assert_is_instance(tema, pl.Series)
57
assert_equal(len(tema), 50)
0 commit comments