forked from Gab0/japonicus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigIndicators.py
52 lines (51 loc) · 1.45 KB
/
configIndicators.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
#1/bin/python
cI = {
"PPO":{
"active": True,
"short": (6,18), # short EMA
"long": (13,39), # long EMA
"signal": (1,18), # 100 * (shortEMA - longEMA / longEMA)
"thresholds.down": (-0.5,0.), # trend thresholds
"thresholds.up": (0.,0.5) # trend thresholds
},
"TSI":{
"active": True,
"thresholds.up": (15,35),
"thresholds.down": (-35,-15),
"short": (3,12),
"long": (15,35)
},
"LRC": {
"active": True,
"thresholds.up": (15,35),
"thresholds.down": (-35,-15),
"depth": (3,18)
},
"RSI":{
"active": True,
"interval": (7,21), # weight
"thresholds.down": (15,45), # trend thresholds
"thresholds.up": (45,140), # trend thresholds
},
"SMMA":{
"active": True,
"weight": (7,16),
"thresholds.up": (0,0.1),
"thresholds.down": (-0.1,0)
},
"DEMA":{
"active": True,
"short": (7,15),
"long": (12,35),
"thresholds.up": (0,0.1),
"thresholds.down": (-0.1,0)
},
"CCI":{
"active": True,
"consistant": (7,21), # constant multiplier. 0.015 gets to around 70% fit
"history": (45,135), # history size, make same or smaller than history
"thresholds.down": (-150,-50), # trend thresholds
"thresholds.up": (50,150), # trend thresholds
"thresholds.persistence": (4,10)},
"persistence": (1,5)
}