forked from TA-Lib/ta-lib-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CHANGELOG
112 lines (72 loc) · 2.98 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
0.4.10
======
- [NEW]: Support for TA_SetUnstablePeriod and TA_GetUnstablePeriod
0.4.9
=====
- [NEW]: Support for python 2.6 and earlier for ordereddict.
- [FIX]: Add lib64 paths to setup.py.
- [NEW]: Upgrade to Cython 0.22.
- [FIX]: Allow running setup.py without numpy or cython
- [NEW]: Allow TA_LIBRARY_PATH and TA_INCLUDE_PATH environment variables.
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.
- [NEW]: Upgrade to Cython 0.20.
- [FIX]: Check all input array lengths are same.
- [FIX]: Check all input arrays for NaN elements.
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
=====
- [NEW]: Support for function_flags and output_flags properties in Functions
0.4.5
=====
- [NEW]: Better test coverage of abstract interface.
- [NEW]: Support for Python 3.
0.4.4
=====
- [FIX]: Make installation on Windows easier.
0.4.3
=====
- [NEW]: Upgrade to Cython 0.18.
- [FIX]: Improve docstrings for indicators in talib.func.
- [FIX]: Initialize and shutdown underlying TA-Lib only once each process.
This should give slight speedups when using many indicators (<5%).
- [DEPRECATED]: The old moving average types that were in talib.func are now
deprecated. See the next bullet item for the replacement, or you can
continue using them with "from talib import deprecated" for the time being.
- [NEW]: The new moving average types are in talib.MA_Type. It's a class with SMA,
EMA, DEMA, etc attribute variables you should now use. Human-readable lookups
are also possible by using MA_Type as a dict e.g.:
MA_Type[MA_Type.SMA] # returns "Simple Moving Average"
- [NEW]: In addition to the existing func interface, we now provide an
enhanced abstract interface too. Functions in "import talib" use the
original interface, or you can use "from talib import abstract" for
the full abstract interface. See the README, tools/example.py and
tests/abstract_test.py for more information. The full (commented)
source code is mostly located in talib/abstract.pyx. The basic usage is very
similar:
input_arrays = { 'open': np.random.random(100),
'high': np.random.random(100),
'low': np.random.random(100),
'close': np.random.random(100),
'volume': np.random.random(100) }
ema_20 = abstract.Function('ema', input_arrays, 20).outputs # function names not case-sensitive
slowd, slowk = abstract.Function('STOCH')(input_arrays, 15, 3, 0, 3, 0)
upper, middle, lower = abstract.Function('bbands')(input_arrays, timeperiod=20)
0.4.2
=====
- Move the functions into ``talib.func``, to prepare for ``talib.abstract``
in a future release.
0.4.1
=====
- Support for MacPorts.
- Fix for FreeBSD.
0.4.0
=====
First version.