From 96005482ef8783bb372485a6b82ba9112c3bb892 Mon Sep 17 00:00:00 2001 From: tef Date: Tue, 4 Jan 2022 18:35:17 -0500 Subject: [PATCH] add config 4 --- config_examples/config_4_json | 89 +++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 config_examples/config_4_json diff --git a/config_examples/config_4_json b/config_examples/config_4_json new file mode 100644 index 000000000..720f6dff5 --- /dev/null +++ b/config_examples/config_4_json @@ -0,0 +1,89 @@ + +{ + "max_open_trades": 3, + "stake_currency": "USDT", + "stake_amount": 10, + "tradable_balance_ratio": 0.1, + "fiat_display_currency": "USD", + "dry_run": true, + "cancel_open_orders_on_exit": false, + "unfilledtimeout": { + "buy": 10, + "sell": 30, + "unit": "minutes" + }, + "bid_strategy": { + "price_side": "bid", + "ask_last_balance": 0.0, + "use_order_book": true, + "order_book_top": 1, + "check_depth_of_market": { + "enabled": false, + "bids_to_ask_delta": 1 + } + }, + "ask_strategy": { + "price_side": "ask", + "use_order_book": true, + "order_book_top": 1 + }, + "exchange": { + "name": "binance", + "key": "", + "secret": "", + "ccxt_config": {}, + "ccxt_async_config": {}, + "pair_whitelist": [ + "BTC/USDT", + + "ETH/USDT", + + "ADA/USDT", + "XLM/USDT" + ], + "pair_blacklist": [ + "BNB/.*" + ] + }, + "pairlists": [ + { + "method": "StaticPairList" + } + ], + "edge": { + "enabled": false, + "process_throttle_secs": 3600, + "calculate_since_number_of_days": 7, + "allowed_risk": 0.01, + "stoploss_range_min": -0.01, + "stoploss_range_max": -0.1, + "stoploss_range_step": -0.01, + "minimum_winrate": 0.60, + "minimum_expectancy": 0.20, + "min_trade_number": 10, + "max_trade_duration_minute": 1440, + "remove_pumps": false + }, + "telegram": { + "enabled": true, + "token": "2112837066:AAHxxWaGtdciclPOqDycolF8hRg7vcWO6F4", + "chat_id": "2091515934" + }, + "api_server": { + "enabled": false, + "listen_ip_address": "127.0.0.1", + "listen_port": 8080, + "verbosity": "error", + "enable_openapi": false, + "jwt_secret_key": "85c2f16af43e3f710301a69b497ea7bfdbc2639cc3af3b3e22257f7e7e56c161", + "CORS_origins": [], + "username": "", + "password": "" + }, + "bot_name": "freqtrade", + "initial_state": "running", + "forcebuy_enable": false, + "internals": { + "process_throttle_secs": 5 + } +}