diff --git a/CHANGELOG b/CHANGELOG index 26d09d023..801b688c9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,21 @@ +0.4.8 +===== + +- [NEW]: Support pandas.Series and pandas.Dataframe inputs. + +- [FIX]: Simple check to warn if ta-lib library is not installed + +- [FIX]: Fix missing key error when inputs are not default names. + +0.4.7 +===== + +- [NEW]: Upgrade to Cython 0.19.1. + +- [FIX]: Fix "periods" input arrays in abstract interface. + +- [FIX]: Only require necessary input arrays in abstract interface. + 0.4.6 ===== diff --git a/COPYRIGHT b/COPYRIGHT index ed71527b0..8aa18b0bc 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -1,2 +1,2 @@ -Copyright (C) 2012 Silfur Capital, LLC. All Rights Reserved. +Copyright (C) 2012-2013 Silfur Capital, LLC. All Rights Reserved. The contents of talib/abstract.pyx are Copyright (c) 2013 Brian A Cappello. All Rights Reserved. diff --git a/DEVELOPMENT b/DEVELOPMENT index 17edd4dec..ffc9a65bf 100644 --- a/DEVELOPMENT +++ b/DEVELOPMENT @@ -1,4 +1,5 @@ -To get started developing on talib, clone the latest code from git and install: +To get started developing on talib, clone the latest code from git and +install: $ git clone git://github.com/mrjbq7/ta-lib.git $ cd ta-lib @@ -7,6 +8,7 @@ $ make build $ [sudo] make install Here's the full list of make commands (see the Makefile file): + make build # builds and places libs in the project directory; required for testing make clean # cleans the local build files make install # installs talib system-wide @@ -14,8 +16,9 @@ make generate: # generates a fresh func.pyx file. Requires talib and TA-Lib to b make perf # run performance profiling make test # run tests -The source code is comprised of one python package, located in the talib directory, -which itself has three Cython modules: func, abstract, and common. +The source code is comprised of one python package, located in the talib +directory, which itself has three Cython modules: func, abstract, and +common. talib/common.pyx An internal-use module for functionality shared between func and abstract. @@ -36,8 +39,10 @@ tools/generate.py A script that generates and prints func.pyx to stdout. Gets information about all functions from the C headers of the installed TA-Lib. -If you are interested in developing new indicator functions or whatnot on the -underlying TA-Lib, you must install TA-Lib from svn. Here's how (Linux tested): +If you are interested in developing new indicator functions or whatnot on +the underlying TA-Lib, you must install TA-Lib from svn. Here's how (Linux +tested): + ``` $ cd ~/dev $ svn checkout svn://svn.code.sf.net/p/ta-lib/code/trunk@1545 ta-lib-code