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, first of all thanks alot for such wonderful library. Additionally kindly add Hash-Ribbons, as I have found it to be the most valid signal-generating indicator. And kindly if anyone...

enhancement

Hi , First of all, Thank you for putting such a effort to implement TA lib. Issue: Approach to calculate VWAP is of MWAP i.e.. average price over a period...

bug

In accordance with [the definition of VWAP](https://school.stockcharts.com/doku.php?id=technical_indicators:vwap_intraday) that you provide in the documentation VWAP should be calculated using cumulative volume, which is calculated from the start of the trading session...

bug

Changed the starting index in rows 799 and 814 from 1 to 0. Otherwise, when printing the final adx together with adx_neg and adx_pos, it looked like the adx was...

Hello, Greetings and thank you for implementing this library. I used your library and was able to compare live the values for RSI and Stochastic RSI (K,D) with other software....

May not be the best place to ask. But does anyone have suggestions on how to speed up calc'ing all indicators on a large pandas dataframe with eod data for...

enhancement

You may use cuDF if gpu is available on machine It helps you to faster math calculation and it has the same api as pandas https://github.com/rapidsai/cudf

In the rare occasions that `high` = `low`, the ADI returns infinite. The fix for this is if `high` = `low`, we compare `high` with `yesterday close` to obtain the...

Similar to Issue #122 Code (were df is a pandas dataframe) ``` ta.add_all_ta_features( df, 'BTC:open', 'BTC:high', 'BTC:low', 'BTC:close', 'BTC:volume' ) ``` Error: ``` A value is trying to be set...