Pandas TA Classic Documentation
Pandas TA Classic is an easy to use library that leverages the Pandas package with more than 140 Indicators and Utility functions and more than 60 TA Lib Candlestick Patterns. This is the community maintained version of the popular pandas-ta library.
Quick Start
pip install pandas-ta-classic
import pandas as pd
import pandas_ta_classic as ta
# Load your data
df = pd.read_csv("path/to/symbol.csv")
# Calculate indicators
df.ta.sma(length=20, append=True)
df.ta.rsi(append=True)
df.ta.macd(append=True)
Table of Contents
Getting Started:
User Guide:
Additional Resources: