From 803b4cae788f99a97cd3b3dce0775e9f0e25f25e Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 18 Jan 2026 14:32:37 +0100 Subject: [PATCH] chore: improved docstring --- freqtrade/data/btanalysis/trade_parallelism.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/freqtrade/data/btanalysis/trade_parallelism.py b/freqtrade/data/btanalysis/trade_parallelism.py index f69cb4e80..15d6d2138 100644 --- a/freqtrade/data/btanalysis/trade_parallelism.py +++ b/freqtrade/data/btanalysis/trade_parallelism.py @@ -78,6 +78,10 @@ def balance_distribution_over_time( """ Return a dataframe with stake_currency and the pairlist as columns Each column will contain the amount of the currency at the given time + Columns added are: + - stake_currency: amount of stake currency + - : amount of base currency in the pair + - _leverage: leverage used for the pair at the time (NaN if no open trade) :param trades: Trades Dataframe - can be loaded from backtest, or created via trade_list_to_dataframe :param timeframe: Frequency to use for the resulting dataframe