diff --git a/config_examples/config_binance.example.json b/config_examples/config_binance.example.json index d59ff96cb..c6faf506c 100644 --- a/config_examples/config_binance.example.json +++ b/config_examples/config_binance.example.json @@ -9,7 +9,9 @@ "cancel_open_orders_on_exit": false, "unfilledtimeout": { "buy": 10, - "sell": 30 + "sell": 10, + "exit_timeout_count": 0, + "unit": "minutes" }, "bid_strategy": { "ask_last_balance": 0.0, diff --git a/config_examples/config_bittrex.example.json b/config_examples/config_bittrex.example.json index 4352d8822..9fe99c835 100644 --- a/config_examples/config_bittrex.example.json +++ b/config_examples/config_bittrex.example.json @@ -9,7 +9,9 @@ "cancel_open_orders_on_exit": false, "unfilledtimeout": { "buy": 10, - "sell": 30 + "sell": 10, + "exit_timeout_count": 0, + "unit": "minutes" }, "bid_strategy": { "use_order_book": true, diff --git a/config_examples/config_ftx.example.json b/config_examples/config_ftx.example.json index 4d9633cc0..4f7c2af54 100644 --- a/config_examples/config_ftx.example.json +++ b/config_examples/config_ftx.example.json @@ -9,7 +9,9 @@ "cancel_open_orders_on_exit": false, "unfilledtimeout": { "buy": 10, - "sell": 30 + "sell": 10, + "exit_timeout_count": 0, + "unit": "minutes" }, "bid_strategy": { "ask_last_balance": 0.0, diff --git a/config_examples/config_full.example.json b/config_examples/config_full.example.json index 81a034a21..5202954f4 100644 --- a/config_examples/config_full.example.json +++ b/config_examples/config_full.example.json @@ -28,7 +28,7 @@ "stoploss": -0.10, "unfilledtimeout": { "buy": 10, - "sell": 30, + "sell": 10, "exit_timeout_count": 0, "unit": "minutes" }, diff --git a/config_examples/config_kraken.example.json b/config_examples/config_kraken.example.json index 32def895c..5ac3a9255 100644 --- a/config_examples/config_kraken.example.json +++ b/config_examples/config_kraken.example.json @@ -9,7 +9,9 @@ "cancel_open_orders_on_exit": false, "unfilledtimeout": { "buy": 10, - "sell": 30 + "sell": 10, + "exit_timeout_count": 0, + "unit": "minutes" }, "bid_strategy": { "use_order_book": true, diff --git a/freqtrade/templates/base_config.json.j2 b/freqtrade/templates/base_config.json.j2 index e2fa1c63e..c91715b1f 100644 --- a/freqtrade/templates/base_config.json.j2 +++ b/freqtrade/templates/base_config.json.j2 @@ -15,7 +15,8 @@ "cancel_open_orders_on_exit": false, "unfilledtimeout": { "buy": 10, - "sell": 30, + "sell": 10, + "exit_timeout_count": 0, "unit": "minutes" }, "bid_strategy": {