forked from iterativv/NostalgiaForInfinity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexampleconfig.json
More file actions
105 lines (105 loc) · 2.39 KB
/
exampleconfig.json
File metadata and controls
105 lines (105 loc) · 2.39 KB
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
{
// WARNING: This is an example configuration
// Please use at own risk
// For full documentation on Freqtrade configration files please visit https://www.freqtrade.io/en/stable/configuration/
"dry_run": true,
"dry_run_wallet": 10000,
"grinding_enable": true,
"max_open_trades": 6,
"stake_currency": "USDT",
"stake_amount": "unlimited",
"tradable_balance_ratio": 0.99,
"fiat_display_currency": "USD",
"force_entry_enable": true,
"initial_state": "running",
"timeframe": "5m",
"unfilledtimeout": {
"entry": 20,
"exit": 20,
"exit_timeout_count": 0,
"unit": "minutes"
},
"order_types": {
"entry": "limit",
"exit": "limit",
"emergency_exit": "limit",
"force_entry": "limit",
"force_exit": "limit",
"stoploss": "limit",
"stoploss_on_exchange": false,
"stoploss_on_exchange_interval": 60,
"stoploss_on_exchange_limit_ratio": 0.99
},
"entry_pricing": {
"price_side": "other",
"use_order_book": false,
"order_book_top": 1,
"price_last_balance": 0,
"check_depth_of_market": {
"enabled": false,
"bids_to_ask_delta": 1
}
},
"exit_pricing": {
"price_side": "other",
"use_order_book": false,
"order_book_top": 1,
"price_last_balance": 0
},
"exchange": {
"name": "",
"key": "",
"password": "",
"secret": "",
"ccxt_config": {
"enableRateLimit": true,
"rateLimit": 60,
"options": {
"brokerId": null,
// "broker": {
// "spot": null,
// "margin": null,
// "future": null,
// "delivery": null,
// "swap": null,
// "option": null
// },
"partner": {
"spot": {
"id": null,
"key": null
},
"future": {
"id": null,
"key": null
}
}
}
},
"ccxt_async_config": {
"enableRateLimit": true,
"rateLimit": 60,
"options": {
"brokerId": null,
// "broker": {
// "spot": null,
// "margin": null,
// "future": null,
// "delivery": null,
// "swap": null,
// "option": null
// },
"partner": {
"spot": {
"id": null,
"key": null
},
"future": {
"id": null,
"key": null
}
}
}
}
}
}