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:
2
3
3
4
$ git clone git://github.com/mrjbq7/ta-lib.git
4
5
$ cd ta-lib
@@ -7,15 +8,17 @@ $ make build
7
8
$ [sudo] make install
8
9
9
10
Here's the full list of make commands (see the Makefile file):
11
+
10
12
make build # builds and places libs in the project directory; required for testing
11
13
make clean # cleans the local build files
12
14
make install # installs talib system-wide
13
15
make generate: # generates a fresh func.pyx file. Requires talib and TA-Lib to both be installed
14
16
make perf # run performance profiling
15
17
make test # run tests
16
18
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.
19
22
20
23
talib/common.pyx
21
24
An internal-use module for functionality shared between func and abstract.
@@ -36,8 +39,10 @@ tools/generate.py
36
39
A script that generates and prints func.pyx to stdout. Gets information
37
40
about all functions from the C headers of the installed TA-Lib.
38
41
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
+
41
46
```
42
47
$ cd ~/dev
43
48
$ svn checkout svn://svn.code.sf.net/p/ta-lib/code/trunk@1545 ta-lib-code
0 commit comments