Skip to content

xxxxyyyy80008/technical-indicators

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Technical Analysis Library

Introduction

This lib is refactored from finta by peerchemist

Usage Examples

Simple Usage

from talib import TA

# Load OHLCV data
df = pd.read_csv('ohlcv_data.csv')


# With OHLC data
ta = TA(ohlc=df)
print(ta.available_indicators)  # Shows all indicators


# Calculate indicators
sma = ta.SMA(period=20)  
rsi_14 = ta.RSI(14)
macd = ta.MACD()
heikin_ashi = ta.HEIKIN_ASHI()

Kaggle

About

Technical Analysis Library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages