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

Can you add new _window for neg and pos? Default will fetch from default adx but if you typed a number(neg, pos or both) it will fetch it. And can...

hi I just checked : https://freesoft.dev/program/116043206 and saw , there was a line in TODO list to impalement DASK for parallelizing the calculation of indicators. was there any issue on...

Great work on the library. I've found I've needed to shift the Ichimoku spans to get accurate plotting with mplfinance/matplotlib Here's my library call and senkou shifts ![image](https://user-images.githubusercontent.com/18313961/90298349-f7ddf780-de5f-11ea-8c1c-c424092c3400.png) The resulting...

The [Aroon indicator](https://www.investopedia.com/terms/a/aroon.asp) should be using the highs and the lows and should output values from 0 to 100. [This code here](https://github.com/bukosabino/ta/blob/84ced26e07cb676d1033703dfd81e1ee81285b07/ta/trend.py#L40-L45) uses the closes (which might be interesting as...

While trying to add all TA features, I have downloaded a dataset from [Yahoo Finance](https://finance.yahoo.com/quote/1076.HK/history?period1=1325462400&period2=1577750400&interval=1d&filter=history&frequency=1d), which I also attached in the zip The data that I used is from 2012-09-06...

I got the following warning. Why is it so? Can this warning be fixed? ``` >>> import pandas as pd >>> from ta import add_all_ta_features >>> df = pd.read_csv('datas.csv', sep=',')...

trend.py:643 I have revised this to: for i in range(len(self._trs)): try: dip[i] = 100 * (self._dip[i]/self._trs[i]) except FloatingPointError as e: dip[i] = 0 logger.error(e) but I am not sure this...

Hi! First of all, really appreciate your effort in making TA calculation a lot easier in Python! I just have one little request, can you add weighted moving average (WMA)...

enhancement

Hi , After calling VolumeWeightedAveragePrice function , it is returning below object type Could you please help on how to read values out of it