-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
87 lines (87 loc) · 2.34 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
{
"assets": [
{
"name": "Bitcoin",
"symbol": "BTC",
"buy_amount_usd": 500,
"buy_threshold": -5.0,
"sell_threshold": 12.0,
"max_open_buys": 5,
"buy_strategy": {
"candle_size": "ONE_HOUR",
"green_candles_in_a_row": 1
},
"sell_strategy": {
"type": "MAXIMIZE_PROFIT",
"MAXIMIZE_PROFIT": {
"candle_size": "ONE_HOUR",
"red_candles_in_a_row": 1
}
}
},
{
"name": "Ethereum",
"symbol": "ETH",
"buy_amount_usd": 500,
"buy_threshold": -5.0,
"sell_threshold": 12.0,
"max_open_buys": 5
},
{
"name": "Solana",
"symbol": "SOL",
"buy_amount_usd": 200,
"buy_threshold": -5.0,
"sell_threshold": 12.0,
"max_open_buys": 5
},
{
"name": "Algorand",
"symbol": "ALGO",
"buy_amount_usd": 100,
"buy_threshold": -5.0,
"sell_threshold": 12.0,
"max_open_buys": 1
},
{
"name": "Polygon",
"symbol": "MATIC",
"buy_amount_usd": 100,
"buy_threshold": -5.0,
"sell_threshold": 12.0,
"max_open_buys": 1
},
{
"name": "Cardano",
"symbol": "ADA",
"buy_amount_usd": 100,
"buy_threshold": -5.0,
"sell_threshold": 12.0,
"max_open_buys": 1,
"buy_strategy": {
"candle_size": "ONE_HOUR",
"green_candles_in_a_row": 2
},
"sell_strategy": {
"type": "IMMEDIATE_SELL",
"IMMEDIATE_SELL": {}
}
},
{
"name": "Chainlink",
"symbol": "LINK",
"buy_amount_usd": 100,
"buy_threshold": -5.0,
"sell_threshold": 12.0,
"max_open_buys": 1
}
],
"database_config": {
"type": "MONGO",
"MONGO": {
"name": "main",
"decisions_collection": "decisions",
"price_collection": "current_prices"
}
}
}