forked from freqtrade/freqtrade
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config_full.json.example
72 lines (72 loc) · 1.71 KB
/
config_full.json.example
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
{
"max_open_trades": 3,
"stake_currency": "BTC",
"stake_amount": 0.05,
"fiat_display_currency": "USD",
"dry_run": false,
"disable_buy" : false,
"ticker_interval": "5m",
"trailing_stop": true,
"minimal_roi": {
"40": 0.0,
"30": 0.01,
"20": 0.02,
"0": 0.04
},
"stoploss": -0.10,
"unfilledtimeout": {
"buy":10,
"sell":30
}
"bid_strategy": {
"ask_last_balance": 0.0,
"use_book_order": false,
"book_order_top": 6,
"percent_from_top": 0
},
"ask_strategy":{
"use_book_order": false,
"book_order_min": 1,
"book_order_max": 30
},
"exchange": {
"name": "bittrex",
"key": "your_exchange_key",
"secret": "your_exchange_secret",
"pair_whitelist": [
"ETH/BTC",
"LTC/BTC",
"ETC/BTC",
"DASH/BTC",
"ZEC/BTC",
"XLM/BTC",
"NXT/BTC",
"POWR/BTC",
"ADA/BTC",
"XMR/BTC"
],
"pair_blacklist": [
"DOGE/BTC"
]
},
"experimental": {
"use_sell_signal": false,
"sell_profit_only": false,
"sell_fullfilled_at_roi": false,
"check_depth_of_market": false,
"dom_bids_asks_delta": 1.5
"buy_price_below_24h_h_l": false
},
"telegram": {
"enabled": true,
"token": "your_telegram_token",
"chat_id": "your_telegram_chat_id"
},
"db_url": "sqlite:///tradesv3.sqlite",
"initial_state": "running",
"internals": {
"process_throttle_secs": 5
},
"strategy": "DefaultStrategy",
"strategy_path": "/some/folder/"
}