stable/config_examples/config_bittrex.example.json

81 lines
2.0 KiB
JSON
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,
"tradable_balance_ratio": 0.99,
2017-12-25 07:51:41 +00:00
"fiat_display_currency": "USD",
"timeframe": "5m",
2020-10-13 18:10:50 +00:00
"dry_run": true,
"cancel_open_orders_on_exit": false,
"unfilledtimeout": {
"entry": 10,
"exit": 10,
2022-01-16 12:16:49 +00:00
"exit_timeout_count": 0,
"unit": "minutes"
2018-06-30 15:37:34 +00:00
},
"entry_pricing": {
"price_side": "same",
"use_order_book": true,
"order_book_top": 1,
2022-03-29 17:07:29 +00:00
"price_last_balance": 0.0,
"check_depth_of_market": {
"enabled": false,
"bids_to_ask_delta": 1
}
},
"exit_pricing":{
"price_side": "same",
"use_order_book": true,
"order_book_top": 1
},
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",
2018-10-04 18:34:33 +00:00
"ccxt_config": {"enableRateLimit": true},
"ccxt_async_config": {
"enableRateLimit": true,
"rateLimit": 500
2018-10-04 18:34:33 +00:00
},
2017-05-12 17:11:56 +00:00
"pair_whitelist": [
2018-03-24 19:07:04 +00:00
"ETH/BTC",
"LTC/BTC",
"ETC/BTC",
"RVN/BTC",
"CRO/BTC",
2018-03-24 19:07:04 +00:00
"XLM/BTC",
"XRP/BTC",
"TRX/BTC",
2018-03-24 19:07:04 +00:00
"ADA/BTC",
"DOT/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
]
},
2019-11-09 12:59:19 +00:00
"pairlists": [
{"method": "StaticPairList"}
],
2017-05-12 17:11:56 +00:00
"telegram": {
2019-11-09 12:59:19 +00:00
"enabled": false,
"token": "your_telegram_token",
"chat_id": "your_telegram_chat_id"
},
"api_server": {
"enabled": false,
"listen_ip_address": "127.0.0.1",
"listen_port": 8080,
2021-01-03 06:18:41 +00:00
"verbosity": "error",
"jwt_secret_key": "somethingrandom",
2020-06-24 18:32:19 +00:00
"CORS_origins": [],
2021-01-03 06:18:41 +00:00
"username": "freqtrader",
"password": "SuperSecurePassword"
},
"bot_name": "freqtrade",
2017-11-11 15:47:19 +00:00
"initial_state": "running",
2022-04-08 11:39:41 +00:00
"force_entry_enable": false,
2017-11-11 15:47:19 +00:00
"internals": {
"process_throttle_secs": 5
}
}