Skip to content

Commit 30d5603

Browse files
committed
update changelog and dev docs.
1 parent f10daa5 commit 30d5603

File tree

3 files changed

+29
-6
lines changed

3 files changed

+29
-6
lines changed

CHANGELOG

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
0.4.8
2+
=====
3+
4+
- [NEW]: Support pandas.Series and pandas.Dataframe inputs.
5+
6+
- [FIX]: Simple check to warn if ta-lib library is not installed
7+
8+
- [FIX]: Fix missing key error when inputs are not default names.
9+
10+
0.4.7
11+
=====
12+
13+
- [NEW]: Upgrade to Cython 0.19.1.
14+
15+
- [FIX]: Fix "periods" input arrays in abstract interface.
16+
17+
- [FIX]: Only require necessary input arrays in abstract interface.
18+
119
0.4.6
220
=====
321

COPYRIGHT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Copyright (C) 2012 Silfur Capital, LLC. All Rights Reserved.
1+
Copyright (C) 2012-2013 Silfur Capital, LLC. All Rights Reserved.
22
The contents of talib/abstract.pyx are Copyright (c) 2013 Brian A Cappello. All Rights Reserved.

DEVELOPMENT

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
To get started developing on talib, clone the latest code from git and install:
1+
To get started developing on talib, clone the latest code from git and
2+
install:
23

34
$ git clone git://github.com/mrjbq7/ta-lib.git
45
$ cd ta-lib
@@ -7,15 +8,17 @@ $ make build
78
$ [sudo] make install
89

910
Here's the full list of make commands (see the Makefile file):
11+
1012
make build # builds and places libs in the project directory; required for testing
1113
make clean # cleans the local build files
1214
make install # installs talib system-wide
1315
make generate: # generates a fresh func.pyx file. Requires talib and TA-Lib to both be installed
1416
make perf # run performance profiling
1517
make test # run tests
1618

17-
The source code is comprised of one python package, located in the talib directory,
18-
which itself has three Cython modules: func, abstract, and common.
19+
The source code is comprised of one python package, located in the talib
20+
directory, which itself has three Cython modules: func, abstract, and
21+
common.
1922

2023
talib/common.pyx
2124
An internal-use module for functionality shared between func and abstract.
@@ -36,8 +39,10 @@ tools/generate.py
3639
A script that generates and prints func.pyx to stdout. Gets information
3740
about all functions from the C headers of the installed TA-Lib.
3841

39-
If you are interested in developing new indicator functions or whatnot on the
40-
underlying TA-Lib, you must install TA-Lib from svn. Here's how (Linux tested):
42+
If you are interested in developing new indicator functions or whatnot on
43+
the underlying TA-Lib, you must install TA-Lib from svn. Here's how (Linux
44+
tested):
45+
4146
```
4247
$ cd ~/dev
4348
$ svn checkout svn://svn.code.sf.net/p/ta-lib/code/trunk@1545 ta-lib-code

0 commit comments

Comments
 (0)