From b5f31bf82d1f1f537310785a7c4980c36b6324aa Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 20 Jun 2025 16:05:03 +0200 Subject: [PATCH] chore: use proper starting balance --- freqtrade/util/migrations/migrate_wallet_history.py | 1 + 1 file changed, 1 insertion(+) diff --git a/freqtrade/util/migrations/migrate_wallet_history.py b/freqtrade/util/migrations/migrate_wallet_history.py index ef1094920..86db525ac 100644 --- a/freqtrade/util/migrations/migrate_wallet_history.py +++ b/freqtrade/util/migrations/migrate_wallet_history.py @@ -34,6 +34,7 @@ def _migrate_wallet_history(config: Config, exchange: Exchange): if trade_df.empty: # no trades, nothing to do return + # TODO: use a proper starting balance. starting_balance = 1000 # wallets.get_starting_balance() pairlist = list(trade_df["pair"].unique()) timeframe = "1d"