From 52c78966ef48f0d4fd4a3ba2e9956ce81aea06ff Mon Sep 17 00:00:00 2001 From: Stefano Date: Wed, 25 Jun 2025 19:21:00 +0900 Subject: [PATCH 1/2] Fix example config - Fix the low stake anount - Set max open trades to unlimited, as a good practice --- config_examples/config_binance.example.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config_examples/config_binance.example.json b/config_examples/config_binance.example.json index 6c513f064..d1d5a7667 100644 --- a/config_examples/config_binance.example.json +++ b/config_examples/config_binance.example.json @@ -1,8 +1,8 @@ { "$schema": "https://schema.freqtrade.io/schema.json", - "max_open_trades": 3, + "max_open_trades": -1, "stake_currency": "USDT", - "stake_amount": 0.05, + "stake_amount": 30, "tradable_balance_ratio": 0.99, "fiat_display_currency": "USD", "timeframe": "5m", From ba8778b1818e18bd3424a5de8164c12271938bcc Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 2 Jul 2025 17:55:28 +0200 Subject: [PATCH 2/2] chore: revert max_open_trades in sample config for now --- config_examples/config_binance.example.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config_examples/config_binance.example.json b/config_examples/config_binance.example.json index d1d5a7667..ffb364ffd 100644 --- a/config_examples/config_binance.example.json +++ b/config_examples/config_binance.example.json @@ -1,6 +1,6 @@ { "$schema": "https://schema.freqtrade.io/schema.json", - "max_open_trades": -1, + "max_open_trades": 3, "stake_currency": "USDT", "stake_amount": 30, "tradable_balance_ratio": 0.99,