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! Great project! It would be cool to have an ability for drawing support/resistance lines.

This would allow it to work on some extremely volatile conditions. It's better to assume the price is log-normal distributed than just normal distributed.

Spent some time working on various scripts and routines to apply the indicators from this library to all entities listed on US based exchanges. You can view an example under...

Hello, I recently started using the ta library for a simple stock picking project and I was wondering if there was any way I could access indicators in real-time (or...

For same time point in tow very large csv data, got very different adi and obv values, which increased linearly: eurusd_ask_eurusd_ask_open,eurusd_ask_eurusd_ask_high,eurusd_ask_eurusd_ask_low,eurusd_ask_eurusd_ask_close,eurusd_ask_eurusd_last_trade_volume,**eurusd_ask_volume_adi**,**eurusd_ask_volume_obv** ![image](https://user-images.githubusercontent.com/25084782/88110651-db2a0900-cbac-11ea-9644-91d0667a70de.png) ![image](https://user-images.githubusercontent.com/25084782/88110678-e3824400-cbac-11ea-8065-68b17706a9e0.png)

Would you kindly provide an example of how your library work guys on multindex ( row major ) i.e. ![image](https://user-images.githubusercontent.com/50061659/87871399-3f33ae00-c9b0-11ea-8c8d-1bfabfd9b142.png) looking forward to your response best regards

You have indices for crossing lband and hband but not mavg band

Hi, I'm trying to do some experiment on stock dataset and using this command. add_all_ta_features(df_2, open="Open", high="High", low="Low", close="Adj Close", volume="Volume") So the Close here should be "Adj Close" or...

import yfinance as yf import pandas as pd import ta start ='2019-01-01' end ='2020-06-20' AAPL=yf.download('AAPL',start,end) df_app=AAPL.reset_index() df_app['Symbol']='AAPL' dpo_indi=ta.trend.DPOIndicator(close=df_app["Close"], n=20) df_app['DPO'] =dpo_indi.dpo() DPO value shows -11.037500 on 2020-06-19. Actual value is...