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

For example, I have 1 minute scale tick data, and I'd like add 5 minute/ 15 minute feature upon . I wrote a function ``` def apply_over(func, arr, stride): n...

I have a simple code I am testing. Buy when cci crosses above 0 and short when cci crosses below 0. I got that part correctly in the code however...

Can anyone tell, where can i find the logic coded for identifying CDLMATHOLD

First of all thank you for creating this project. It has been a great help. I wanted to request the TMO indicator as it has helped me a lot in...

``` import talib as ta from talib import stream as ta_stream close = np.random.random(100) output = ta.RSI(close, timeperiod=period) latest = ta_stream.RSI(close, timeperiod=period) print(output) print(latest) print(output[-1] - latest) ```

### Summary: The RSI (Relative Strength Index) indicator in the TA-Lib library requires one more value than the specified 'timeperiod'. This behavior differs from other indicators such as the SMA...

Hi, I tried to get the bollinger bands, my data are valid since the EMA and RSI are good : ``` ta_lib_data = data_table.get_talib_compatible_structure() complete_ema20 = talib.abstract.EMA(ta_lib_data, timeperiod=20, price='average') complete_ema40...

Hello, it appears that with SMA, even if only a few input values are NaNs, ta-libs entire output comes out as NaN. I don't believe this is intended behavior, because...

Is it possible to avoid the "unstable period" to generate some tech indicators like for HT_TRENDLINE. I would like that it doesen't use dinamically all previous bars but only until...