-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathdefault.conf
47 lines (43 loc) · 1.16 KB
/
default.conf
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
[
{
"bitfinex": {
"APIKey": "<key1>",
"APISecret": "<secret1>",
"MinLoanUSD": 50,
"ActiveWallet": "btc",
"MaxActiveAmount": -1
},
"strategy": {
"Active": "MarginBot",
"MarginBot": {
"MinDailyLendRate": 0.01,
"SpreadLend": 3,
"GapBottom": 100,
"GapTop": 5000,
"ThirtyDayDailyThreshold": 0.0,
"HighHoldDailyRate": 0.05,
"HighHoldAmount": 0.0
}
}
},
{
"bitfinex": {
"APIKey": "<key2>",
"APISecret": "<secret2>",
"MinLoanUSD": 50,
"ActiveWallet": "btc",
"MaxActiveAmount": -1
},
"strategy": {
"Active": "CascadeBot",
"CascadeBot": {
"StartDailyLendRateFRRInc": 0.0018,
"ReduceDailyLendRate": 0.0001,
"MinDailyLendRate": 0.01,
"ReductionIntervalMinutes": 10,
"LendPeriod": 2,
"ExponentialDecayMult": 1.0
}
}
}
]