ta-lib-python
ta-lib-python copied to clipboard
Python wrapper for TA-Lib (http://ta-lib.org/).
I am trying to generate an RSI series from an array (also tried pandas series) of close data. (Length > 10000) But when I slice the numpy array into a...
Hi i have this issue. How can i fix it 
The [docs for STOCH()](http://mrjbq7.github.io/ta-lib/func_groups/momentum_indicators.html) do not document `slowk_matype` or `slowd_matype`. The [official docs on this function](http://www.tadoc.org/indicator/STOCH.htm) do not mention these arguments at all.
Hi, Is there's currently any interest in adding Renko for Candlesticks? I tried to see if anyone commented about this in an issue or a PR, but seems no.
The following code shows that the Closing MARUBOZU does not work properly. It suggests that there is a closing MARUBOZU on the last candle, which does not conform to the...
Hi, I'm the maintainer of TA-Lib fork that I made almost 5 years ago. Recently I renamed it to TA-Lib RT which supposed to mean Real Time. The main idea...
Feature Request - Keltner channels Is Keltner Channels in the pipeline for the future?
``` python import numpy as np import talib as ta close = np.random.random(10000) ma_type=7 tmp = ta.MACDEXT(close, fastperiod=13, fastmatype=ma_type, slowperiod=21, slowmatype=ma_type, signalperiod=8, signalmatype=ma_type) print tmp ``` tmp is all nan...
RSI value getting from ta-lib.RSI function is not matching to RSI value posted on financial sites.
Hi, I calculate RSI value for stock using ta-lib.RSI method, but result is not matching with values posted on financial websites. I calculate RSI value based on close price and...