ta icon indicating copy to clipboard operation
ta copied to clipboard

Technical Analysis Library using Pandas and Numpy

Results 120 ta issues
Sort by recently updated
recently updated
newest added

Hi I have many symbols and wondering if anyone has any insight on the best way to iterate them? For instance for bollinger bands, it seems to be quite fast...

I have tried installing the ta through pip. However, when I try running, the code fails even at the import part, saying 'ModuleNotFoundError: No module named 'ta'' Please help.

``` File "D:\Projects\StockExchange\stocks\management\commands\sync_nse_technicals.py", line 24, in handle nse_history_data["mfi"] = MFIIndicator( File "D:\Projects\StockExchange\venv\lib\site-packages\ta\volume.py", line 369, in __init__ self._run() File "D:\Projects\StockExchange\venv\lib\site-packages\ta\volume.py", line 372, in _run typical_price = (self._high + self._low + self._close)...

The Stochastic Oscillator method in most finance web call kd value (ex: yahoo finance) with parameter with 9 days. I choose the same stock_id(2330.TW) in yahoo finance with one year...

File "/Users/jay-ar.brouillard/Development/python/freqtrade/freqtrade/commands/trade_commands.py", line 18, in start_trading worker = Worker(args) File "/Users/jay-ar.brouillard/Development/python/freqtrade/freqtrade/worker.py", line 35, in __init__ self._init(False) File "/Users/jay-ar.brouillard/Development/python/freqtrade/freqtrade/worker.py", line 52, in _init self.freqtrade = FreqtradeBot(self._config) File "/Users/jay-ar.brouillard/Development/python/freqtrade/freqtrade/freqtradebot.py", line 94, in...

Running the "visualize_features.ipynb" example gets me this warning: ` /home/vant/projects/python/ta/env-ta/lib/python3.7/site-packages/ta/trend.py:468: RuntimeWarning: invalid value encountered in double_scalars dip[i] = 100 * (self._dip[i]/self._trs[i]) /home/vant/projects/python/ta/env-ta/lib/python3.7/site-packages/ta/trend.py:472: RuntimeWarning: invalid value encountered in double_scalars din[i] =...

good first issue

I didn't find any relevant python indicator library or calculation for getting values of ATR Trailing Stops, is there any way please help me out. Thanks in advance.

Hi @bukosabino, thanks for this library! it's very useful and well structured. I am wondering where you are getting the test data (test/data), what is the golden source to test...

Hey folks, Either I don't understand how ta works or I've found a bug. I would like to calculate a history of all technical indicators for a lot of stocks....

Hi , One of the coolest technical indicators and covered a ton of features. I was looking for a Standard deviation indicator , if it can be added for future...