From 52c78966ef48f0d4fd4a3ba2e9956ce81aea06ff Mon Sep 17 00:00:00 2001 From: Stefano Date: Wed, 25 Jun 2025 19:21:00 +0900 Subject: [PATCH] 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",