forked from lausser/piebot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config-example.py
More file actions
34 lines (29 loc) · 867 Bytes
/
Copy path_config-example.py
File metadata and controls
34 lines (29 loc) · 867 Bytes
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
environment = "production"
api_key = "xxx"
api_secret = "xxx"
# The list of coin pairs you want to trade with
pair_list = [
("ADA", "ADA_USDT"),
("ALGO", "ALGO_USDT"),
("ATOM", "ATOM_USDT"),
("BTC", "BTC_USDT"),
("CRO", "CRO_USDT"),
("DOT", "DOT_USDT"),
("ETH", "ETH_USDT"),
("LTC", "LTC_USDT"),
("XLM", "XLM_USDT"),
("XRP", "XRP_USDT")
]
# Sets after how many hours each task should repeat
buy_frequency = 6
rebalance_frequency = 1
# The required value deviation before the coin is rebalanced. This is a percentage
# 0.05 = 5%
# 0.15 = 15%
rebalance_threshold = 0.03
# The USDT value that PieBot will buy for each enabled coin pair in the "Buy" task
buy_order_value = 0.50
# How much USDT do you want to keep as a reserve. This is a percentage of the total portfolio balance
# 0.05 = 5%
# 0.15 = 15%
usdt_reserve = 0.02