ta-lib-python
ta-lib-python copied to clipboard
Python wrapper for TA-Lib (http://ta-lib.org/).
Hi guys, I am trying to see if TA-Lib detects the "Mat Hold" or "Rising / Falling Three Methods" on the ticker: 1611.HK on November 15 2020 (weekly chart, closing...
https://mrjbq7.github.io/ta-lib/func_groups/pattern_recognition.html I don't find the detailed doc of the above functions. For example, how is `CDLHAMMER` computed?
Talib function runs less efficiently after a PCA transform from sklearn is done: ```python import numpy as np import talib import time import sklearn from sklearn.decomposition import PCA import sys...
For some functions it is not working well: ``` import numpy as np import talib from talib import stream close = np.array([.5, .7, .7, .6, .7, .8, .7, .7, .7,...
I keep getting this error when using the candle stick patterns in talib. I'm passing in just float values and they should work fine. i tried typecasting them to nd...
This module generates ta-lib function definitions along with docstrings. Generated .py file then can be used by developers more easily because of already provided function parameters and docstring. Instructions: 1-...
I use Ubuntu 64bit 19.04. I use python 3.7.5 I installed the TA-LIB libraries from ta-lib-0.4.0-src.tar.gz successfully. However when i call python setup.py install i get that error: running install...
https://github.com/mrjbq7/ta-lib/blob/master/docs/func_groups/momentum_indicators.md ``` MFI - Money Flow Index NOTE: The MFI function has an unstable period. real = MFI(high, low, close, volume, timeperiod=14) ``` however, if we check the DESCRIPTION of...
Can you confirm that there is an error in the documentation? https://github.com/mrjbq7/ta-lib/blob/master/docs/func_groups/momentum_indicators.md
While caluclating the factor with pandas,I found the problem. What I used: groupby , apply , for time in range(5,60): df[f"MACD_macd_{time}"],df["MACD_macdsignal"],df["MACD_macdhist"] = talib.MACD(close, fastperiod=time//2, slowperiod=time, signalperiod=time//3) The error happened