Skip to content

Simple technical indicators (and a basic RF ML one), easily plugable in Python crypto bots

Notifications You must be signed in to change notification settings

antonpenev/python-crypto-indicators

Repository files navigation

Python Crypto Indicators

Useful indicators to generate financial technical indicators. Some are based on Talib (but with little tweak to improve perfomance). Others are attemps for basic Rain Forest Machine learning algorithms.

Requirements

Install all needed external modules with

python -r requirements.txt

Usage

Pick some indicator

from rsi_indicator import RsiIndicator

my_indicator = RsiIndicator()

Feed the indicator with data

my_indicator.on_new_candle(candle)

candle is OHLCV based candle

Get aggregated data

my_indicator.export_data()

List of supported indicators.

  • RSI
  • CCI
  • MACD
  • EMA
  • ATR
  • RF ML
  • Volume weighted MACD

About

Simple technical indicators (and a basic RF ML one), easily plugable in Python crypto bots

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages