-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.json
125 lines (125 loc) · 2.67 KB
/
config.json
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
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"Exchange": "binance",
"MakerFee": 0.001,
"TakerFee": 0.001,
"market_pair": [
"ETHUSDT"
],
"timeframe": [
"1m",
"3m",
"5m",
"1h",
"1d"
],
"limit": {
"1m": 1000,
"5m": 1000,
"3m": 1000,
"1h": 1000,
"1d": 1000
},
"periods": {
"ema": [
9,
25,
50,
100
],
"rsi": [
6,
14
],
"atr": [
14
],
"macd": [
1
],
"aroon": [
1
]
},
"order_type": [
"limit"
],
"database_type": "sqlite3",
"database_path": "data",
"database_name": "data.db",
"secondary_database_type": "json",
"secondary_database_path": "data",
"secondary_database_name": "data.json",
"type_of_trade": "live",
"depth_data_limit": 100,
"primary_timeframe": "5m",
"informative_timeframe": "1h",
"fast_timeframe": "1m",
"support_resistance": {
"create_type": "zig_zag",
"use_from_config": "False",
"sr": [],
"get_from_user": "False",
"size": 4
},
"market_data_limit": "1",
"atr_change_percentage": "0.5",
"atr_change_markets": [
"ETHUSDT"
],
"use_this_base_currency": [
"USDT"
],
"atr_change_distance": [
2,
5,
10
],
"volume_pair_list": "True",
"whitelist_pairs_static": [],
"strategy": {
"switch": {
"sr": 0.3,
"local_mm": 0.2,
"hard_mm": 0.5
},
"weight": {
"s_weight": 0.5,
"r_weight": 0.5,
"l_max_weight": 0.5,
"l_min_weight": 0.5,
"hard_up_weight": 0.5,
"hard_down_weight": 0.5
},
"hard_mm_distance": {
"upper": 0.25,
"lower": 0.25
},
"advanced": {
"force_atr": "True",
"trend": {
"force": "False",
"value": 0.5
},
"force_sr": "False",
"sr": {
"sr_present": {
"support": "True",
"resistance": "True"
},
"sr_info": {
"support": 2598,
"resistance": 2896
},
"sr_fast": {
"support": "True",
"resistance": "True"
}
},
"sr_sr": [],
"force_trend": {
"force": "False",
"value": 0.5
}
}
}
}