From b96b0f89bd0e0e687d5509a7036e15abebbd6a1c Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 16 Jan 2022 13:16:49 +0100 Subject: [PATCH] improved unfilledtimeout defaults --- config_examples/config_binance.example.json | 4 +++- config_examples/config_bittrex.example.json | 4 +++- config_examples/config_ftx.example.json | 4 +++- config_examples/config_full.example.json | 2 +- config_examples/config_kraken.example.json | 4 +++- freqtrade/templates/base_config.json.j2 | 3 ++- 6 files changed, 15 insertions(+), 6 deletions(-) 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": {