Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Do you know if there is any financial technical analysis module available for python ? I know Numpy has a little but I'm looking for classic technical indicators like RSI , Macd, EMA and so on. Was wondering if they existed as part of a module.

Thanks

share|improve this question

2 Answers

up vote 26 down vote accepted

Here are a few thoughts... I have only used Numpy, Scipy, and Matplotlib for financial calculations.

  • py-fi - very basic financial functions
  • Finance-Py - financial analysis for stocks and derivatives (early development)
  • Numpy/Scipy - covers all of the statistics basics
  • Matplotlib - plotting financial functions
  • RPy - a Python interface to R allowing use of R libraries
  • ystockquote - Python API for Yahoo! Stock Data
  • QuantLib - Open source library (supposedly has Python Bindings)
  • PyFinancial - Docs in Spanish
  • PyMacLab - "Series of classes useful for conducting research in dynamic macroeconomics"
  • TSDB - for storing large volumes of time series data
  • PyVol - volatility estimation of financial time series
share|improve this answer

TA-Lib - Library of indicators. How to compile for Python

share|improve this answer
4  
You might also find this TA-Lib python wrapper to be useful. – mrjbq7 Apr 3 '12 at 16:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.