stable/config.json.example

66 lines
1.5 KiB
Plaintext
Raw Normal View History

2017-05-12 17:11:56 +00:00
{
2017-05-17 23:46:08 +00:00
"max_open_trades": 3,
2017-05-18 16:47:13 +00:00
"stake_currency": "BTC",
2017-05-12 17:11:56 +00:00
"stake_amount": 0.05,
2017-12-25 07:51:41 +00:00
"fiat_display_currency": "USD",
"ticker_interval" : "5m",
2017-05-12 17:11:56 +00:00
"dry_run": false,
"trailing_stop": false,
"unfilledtimeout": {
2018-07-01 17:41:19 +00:00
"buy": 10,
"sell": 30
2018-06-30 15:37:34 +00:00
},
2017-10-01 12:07:09 +00:00
"bid_strategy": {
"ask_last_balance": 0.0
},
2017-10-06 10:22:04 +00:00
"exchange": {
"name": "bittrex",
2018-01-30 20:46:07 +00:00
"key": "your_exchange_key",
"secret": "your_exchange_secret",
"ccxt_rate_limit": true,
2017-05-12 17:11:56 +00:00
"pair_whitelist": [
2018-03-24 19:07:04 +00:00
"ETH/BTC",
"LTC/BTC",
"ETC/BTC",
"DASH/BTC",
"ZEC/BTC",
"XLM/BTC",
"NXT/BTC",
"POWR/BTC",
"ADA/BTC",
"XMR/BTC"
2017-12-31 09:14:17 +00:00
],
"pair_blacklist": [
2018-03-24 19:07:04 +00:00
"DOGE/BTC"
2017-05-12 17:11:56 +00:00
]
},
"experimental": {
"use_sell_signal": false,
2018-06-22 18:10:05 +00:00
"sell_profit_only": false,
2018-08-05 04:41:06 +00:00
"ignore_roi_if_buy_signal": false,
"check_depth_of_market": {
"enabled": false,
"bids_to_ask_delta": 1
},
"bid_strategy": {
"use_order_book": false,
"order_book_top": 2,
"percent_from_top": 0
},
"ask_strategy":{
"use_order_book": false,
"order_book_min": 1,
"order_book_max": 9
}
},
2017-05-12 17:11:56 +00:00
"telegram": {
"enabled": true,
"token": "your_telegram_token",
"chat_id": "your_telegram_chat_id"
},
2017-11-11 15:47:19 +00:00
"initial_state": "running",
"internals": {
"process_throttle_secs": 5
}
}