technify

A framework to run technical analysis. Powered by pandas and ta-lib.


Keywords
technical-analysis, pandas, finance, stock, ta-lib, python, quandl, quantitative-finance
License
Apache-2.0
Install
pip install technify==0.5

Documentation

PyPI version

technify

Technical analysis framework using quandl, ta-lib and pandas library.

Technify provides a simple yet powerful framework to generate common technical analysis signals using ta-lib and pandas visualization to explore trends in stocks data.
The data can be provided as ohlcv data or directly from Quandl by means of the built-in integration.

Features

  • OHLCV values handling
  • Integration with Quandl data feed and API auth
  • TA-LIB indicators
  • Plotting of volume, crossing points and indicators

Documentation

Check the most up-to-date documentation in the wiki

Examples

from technify import Stock
from technify import indicators as ind

# The following code:
# 1) add mean average using Close column, time window = 40   
# 2) add crossing of Open column over ma40   
# 3) plot Open, ma40 and the crossing points together, limit to the last 90 values, plot volume using "Volume" column

msft = Stock.fromQuandl("EOD/MSFT") \
  .append(ind.ma, "Close", timeperiod=40, saveas="ma40")\  
  .cross("Open", "ma40", "cross") \           
  .show(["Open", "ma40", "cross"], interval=range(-90), volume="Volume") 
  

Screenshots

| | |