Skip to content

devthakker/ilib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ILIB - Technical Indicator Library

preview

ILIB is a library of technical indicators that can be used to build trading strategies. It is written in Python and uses the Pandas and Numpy library for data manipulation and Matplotlib for charting.

Python PyPI PyPI - Downloads GitHub

Features

  • Implements various popular technical indicators for financial analysis.
  • Simple and intuitive API for easy integration into your trading systems.
  • Supports Python 3.7 and above.
  • Well-documented codebase and example usage for each indicator.

Installation

pip install ilib

Available Indicators

Usage

import ilib as ti

#data 
prices = [45.15, 46.02, 45.89, 46.29, 45.94, 46.03, 45.71, 45.63, 45.36, 45.81, 46.10, 45.77, 45.95, 45.61, 45.27, 44.17, 44.12, 44.36, 44.54, 44.23, 44.29, 44.15, 44.34, 44.58, 44.69, 44.76, 44.62, 44.57, 44.45, 44.38, 44.23, 44.17, 44.04, 44.22, 44.57, 43.42, 42.66, 43.13, 43.43, 43.70, 43.88, 44.22]

#RSI
rsi = ti.rsi(14, prices)

print(rsi.get_rsi())

rsi.add_data(44.57)

print(rsi.get_rsi())

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages