stable/config_examples/config_binance.example.json

84 lines
2.0 KiB
JSON
Raw Normal View History

{
"max_open_trades": 3,
"stake_currency": "BTC",
"stake_amount": 0.05,
"tradable_balance_ratio": 0.99,
"fiat_display_currency": "USD",
"timeframe": "5m",
"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"
},
"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
},
"exchange": {
"name": "binance",
"key": "your_exchange_key",
"secret": "your_exchange_secret",
"ccxt_config": {},
"ccxt_async_config": {
},
"pair_whitelist": [
2019-12-03 05:37:10 +00:00
"ALGO/BTC",
"ATOM/BTC",
"BAT/BTC",
"BCH/BTC",
"BRD/BTC",
"EOS/BTC",
2019-12-03 05:37:10 +00:00
"ETH/BTC",
"IOTA/BTC",
2019-12-03 05:37:10 +00:00
"LINK/BTC",
"LTC/BTC",
2019-12-03 05:37:10 +00:00
"NEO/BTC",
"NXS/BTC",
"XMR/BTC",
2019-12-03 05:37:10 +00:00
"XRP/BTC",
"XTZ/BTC"
],
"pair_blacklist": [
"BNB/.*"
]
},
2019-11-09 12:59:19 +00:00
"pairlists": [
2019-11-09 14:36:11 +00:00
{"method": "StaticPairList"}
2019-11-09 12:59:19 +00:00
],
"telegram": {
"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",
"initial_state": "running",
2022-04-29 18:10:50 +00:00
"force_entry_enable": false,
"internals": {
"process_throttle_secs": 5
}
}