ta-lib-python icon indicating copy to clipboard operation
ta-lib-python copied to clipboard

Python wrapper for TA-Lib (http://ta-lib.org/).

Results 173 ta-lib-python issues
Sort by recently updated
recently updated
newest added

I want to get the SMA of the RSI indicator, but I have not been successful. It's not in the command extension either. Can you help?

Hi, Is it possible to include SMMA as part of next release? Or can anyone please share the code for calculating SMMA on python?

Could you please add the choppiness index indicator?

Just did a "pip install -U ta-lib" and it installed numpy 2.0.0 as dependency. I don't see the version restriction in requires.txt

``` import numpy as np import talib def _ta_natr_14(x1, x2, x3): t = 14 x1 = x1.flatten() x2 = x2.flatten() x3 = x3.flatten() print(np.nan_to_num(talib.NATR(x1, x2, x3, timeperiod=t))[:100]) def _ta_natr_14_qs(x1, x2,...

The pattern 'shooting star' is not detected on sample data (`talib.CDLSHOOTINGSTAR`) Here is a test file to reproduce it - you can run it directly and see the plot printed...

Hello TA-Lib maintainers, With the upcoming release of Python 3.13, there is an experimental feature allowing Python to run without the Global Interpreter Lock (GIL). This feature is described in...

numpy-2.0.1 and ta-lib-0.4.32 are used . And tests.py is simple code as mentioned here . import numpy as np import talib # Check the versions to confirm the installation print("NumPy...

Hi Team, First of all thanks for creating this library. I am getting below error while trying to import it. ![image](https://github.com/user-attachments/assets/f102976e-059f-4c18-8161-d30b62082ef1) Can you please help me with this?