This is a technical indicators library which is highly useful in the technical analysis of stock market data.
Project description
TI-Lib
This is a technical indicators library which is highly useful in the technical analysis of stock market data.
- Includes 12+ indicators such as MACD, Bollinger Bands, ATR, RSI, Stochastic, ROC, ADX, SuperTrend, VWAP etc.
Installation
You can install from PyPI:
pip install TI-Lib
Getting started with TI-Lib
from tilib import indicators as ic
import yfinance as yf
data_df = yf.download("TCS.NS", period="5d", interval="5m")
rsi = ic.RSI(data_df, 14)
print(rsi)
Supported Indicators
You can get all the technical indicator functions supported by TI-Lib
import tilib
# List of functions
print(tilib.get_functions())
Input to every indicator function
You have to give data in the form of pandas dataframe as first parameter with columns are in ["Open", "High", "Low", "Close", "Volume"] format.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file TI-Lib-0.0.1.tar.gz.
File metadata
- Download URL: TI-Lib-0.0.1.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2bb38640b5d611b74fe0b64512acc724c493e013c578a9f556e192b62548e30
|
|
| MD5 |
db9fa192a9eec34a92527039d46f00a1
|
|
| BLAKE2b-256 |
b6c9f3ff18d5f5a2048a847cf9d1c6ab27a9dd958207fb30319f75071aed63db
|
File details
Details for the file TI_Lib-0.0.1-py3-none-any.whl.
File metadata
- Download URL: TI_Lib-0.0.1-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
241a59ebe0f888ab8e8fa8651e57fdff6ce75cbd050be7743e21b6146483f56f
|
|
| MD5 |
f00c63944bf1c9b933b009db1bc280be
|
|
| BLAKE2b-256 |
2cb5e398394270a0cd95bcb486697b42fc0fd28ae31108327f14fa337dfbcc8a
|