kylejusticemagnuson / Pyti

Licence: mit
Python library of various financial technical indicators

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects
python2
120 projects

Projects that are alternatives of or similar to Pyti

techindicators
Python functions and an associated Jupyter notebook for technical analysis of stock price data. Numpy is used for calculating technical indicators. Matplotlib and mpl_finance are used for plotting data.
Stars: ✭ 31 (-93.84%)
Mutual labels:  technical-analysis
indicado
Technical indicator library for Elixir with no dependencies.
Stars: ✭ 15 (-97.02%)
Mutual labels:  technical-analysis
Crypto Signal
Github.com/CryptoSignal - #1 Quant Trading & Technical Analysis Bot - 3,100+ stars, 900+ forks
Stars: ✭ 3,690 (+633.6%)
Mutual labels:  technical-analysis
Screeni-py
A Python-based stock screener to find stocks with potential breakout probability from NSE India.
Stars: ✭ 161 (-67.99%)
Mutual labels:  technical-analysis
AutoTrader
A Python-based development platform for automated trading systems - from backtesting to optimisation to livetrading.
Stars: ✭ 227 (-54.87%)
Mutual labels:  technical-analysis
algorithmic-market-prediction
Implementation of Algorthmic Prediction of Candle Patterns
Stars: ✭ 21 (-95.83%)
Mutual labels:  technical-analysis
py-investment
Extensible Algo-Trading Python Package.
Stars: ✭ 19 (-96.22%)
Mutual labels:  technical-analysis
Deep Convolution Stock Technical Analysis
Uses Deep Convolutional Neural Networks (CNNs) to model the stock market using technical analysis. Predicts the future trend of stock selections.
Stars: ✭ 407 (-19.09%)
Mutual labels:  technical-analysis
yata
Yet Another Technical Analysis library [for Rust]
Stars: ✭ 142 (-71.77%)
Mutual labels:  technical-analysis
technical-indicators
Finance package written in Golang, mainly with TA indicators.
Stars: ✭ 56 (-88.87%)
Mutual labels:  technical-analysis
TAcharts
Apply popular TA tools and charts to candlestick data with NumPy.
Stars: ✭ 131 (-73.96%)
Mutual labels:  technical-analysis
python-for-decision-makers-course
Demo code and other hand-out materials for our Python for Decision Makers and Business Leaders course
Stars: ✭ 20 (-96.02%)
Mutual labels:  technical-analysis
MSTA
Multi Strategy Trading Algorithm
Stars: ✭ 34 (-93.24%)
Mutual labels:  technical-analysis
go-tachart
Candlestick chart generator (with event mark and TA indicator) using go-echarts
Stars: ✭ 24 (-95.23%)
Mutual labels:  technical-analysis
Ta4j Origins
A Java library for technical analysis ***Not maintained anymore, kept for archival purposes, see #192***
Stars: ✭ 354 (-29.62%)
Mutual labels:  technical-analysis
TradeBot
Crypto trading bot using Binance API (Java)
Stars: ✭ 292 (-41.95%)
Mutual labels:  technical-analysis
crypto-database
Database for crypto data, supporting several exchanges. Can be used for TA, bots, backtest, realtime trading, etc.
Stars: ✭ 72 (-85.69%)
Mutual labels:  technical-analysis
Go Talib
A pure Go port of TA-Lib (http://ta-lib.org)
Stars: ✭ 425 (-15.51%)
Mutual labels:  technical-analysis
Techan
Technical Analysis Library for Golang
Stars: ✭ 404 (-19.68%)
Mutual labels:  technical-analysis
tuneta
Intelligently optimizes technical indicators and optionally selects the least intercorrelated for use in machine learning models
Stars: ✭ 77 (-84.69%)
Mutual labels:  technical-analysis

pyti

This library contains various financial technical indicators that can be used to analyze data.

Now compatible with both Python 2.7 and Python 3.6

The complete list of indicators in this library:

Accumulation/Distribution
Aroon
  -Aroon Up
  -Aroon Down
Average Directional Index
Average True Range
Average True Range Percent
Bollinger Bands
  -Upper Bollinger Band
  -Middle Bollinger Band
  -Lower Bollinger Band
  -Bandwidth
  -Percent Bandwidth
  -Range
  -%B
Chaikin Money Flow
Chande Momentum Oscillator
Commodity Channel Index
Detrended Price Oscillator
Double Exponential Moving Average
Double Smoothed Stochastic
Exponential Moving Average
Hull Moving Average
Ichimoku Cloud
  -TenkanSen
  -KijunSen
  -Chiku Span
  -Senkou A
  -Senkou B
Keltner Bands
  -Bandwidth
  -Center Band
  -Upper Band
  -Lower Band
Linear Weighted Moving Average
Momentum
Money Flow
Money Flow Index
Moving Average Convergence Divergence
Moving Average Envelope
  -Upper Band
  -Center Band
  -Lower Band
Negative Directional Index (-DI)
Negative Directional Movement (-DM)
On Balance Volume
Positive Directional Index (+DI)
Positive Directional Movement (+DM)
Price Channels
  -Upper Price Channel
  -Lower Price Channel
Price Oscillator
Simple Moving Average
Smoothed Moving Average
Standard Deviation
Standard Variance
Stochastic
  -%K
  -%D
StochRSI
Rate of Change
Relative Strength Index
Triangular Moving Average
Triple Exponential Moving Average
True Range
Typical Price
Ultimate Oscillator
Vertical Horizontal Filter
Volatility
Volume Adjusted Moving Average
Volume Index
  -Positive Volume Index
  -Negative Volume Index
Volume Oscillator
Weighted Moving Average
Williams %R

Install using pip:

pip install pyti

Simple example usage of library:

from pyti.exponential_moving_average import exponential_moving_average as ema

data = [6, 7, 3, 6, 3, 9, 5]
period = 2
res = ema(data, period)

# res = [np.nan, 6.75, 4.0, 5.25, 3.75, 7.5, 6.0]

Running the whole test suite using tox:

tox

To run tests for just Python 2.7 use

tox -e py27 tests

or just for Python 3.6

tox -e py36 tests

To specifically run one test in a specific Python version:

tox -e py36 -- tests/test_file_you_want_to_test:TestClassName.test_method_name

If there is an indicator that you would like to see added or believe there is an error in one of the existing ones, feel free to submit it to Issues. If you would like to add your own indicator, fork the project and submit a pull request. Contributions are always welcome.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].