forked from TA-Lib/ta-lib-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.py
60 lines (50 loc) · 1.79 KB
/
example.py
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
from __future__ import print_function
import sys
import numpy as np
import pylab
import talib
from talib.abstract import Function
TEST_LEN = int(sys.argv[1]) if len(sys.argv) > 1 else 100
r = np.arange(TEST_LEN)
idata = np.random.random(TEST_LEN)
def func_example():
odata = talib.MA(idata)
upper, middle, lower = talib.BBANDS(idata)
kama = talib.KAMA(idata)
plot(odata, upper, middle, lower, kama)
def abstract_example():
sma = Function('sma')
input_arrays = sma.get_input_arrays()
for key in input_arrays.keys():
input_arrays[key] = idata
sma.set_input_arrays(input_arrays)
odata = sma(30) # timePeriod=30, specified as an arg
bbands = Function('bbands', input_arrays)
bbands.parameters = {
'timeperiod': 20,
'nbdevup': 2,
'nbdevdn': 2
}
upper, middle, lower = bbands() # multiple output values unpacked (these will always have the correct order)
kama = Function('kama').run(input_arrays) # alternative run() calling method.
plot(odata, upper, middle, lower, kama)
def plot(odata, upper, middle, lower, kama):
pylab.plot(r, idata, 'b-', label="original")
pylab.plot(r, odata, 'g-', label="MA")
pylab.plot(r, upper, 'r-', label="Upper")
pylab.plot(r, middle, 'r-', label="Middle")
pylab.plot(r, lower, 'r-', label="Lower")
pylab.plot(r, kama, 'g', label="KAMA")
pylab.legend()
pylab.show()
if __name__ == '__main__':
print('All functions (sorted by group):')
groups = talib.get_function_groups()
for group, functions in sorted(groups.items()):
print('%s functions: %s' % (group, functions))
if len(sys.argv) == 1 or sys.argv[1] == 'func':
print('Using talib.func')
func_example()
else:
print('Using talib.abstract')
abstract_example()