From 0bb7ea10ab03034c05e33443889c10e8fa8fd5dc Mon Sep 17 00:00:00 2001 From: theluxaz Date: Thu, 14 Oct 2021 01:34:30 +0300 Subject: [PATCH] Fixed minor header for backtesting --- freqtrade/optimize/optimize_reports.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/freqtrade/optimize/optimize_reports.py b/freqtrade/optimize/optimize_reports.py index 0d001b230..0e8467788 100644 --- a/freqtrade/optimize/optimize_reports.py +++ b/freqtrade/optimize/optimize_reports.py @@ -54,6 +54,14 @@ def _get_line_header(first_column: str, stake_currency: str) -> List[str]: f'Tot Profit {stake_currency}', 'Tot Profit %', 'Avg Duration', 'Win Draw Loss Win%'] +def _get_line_header_sell(first_column: str, stake_currency: str) -> List[str]: + """ + Generate header lines (goes in line with _generate_result_line()) + """ + return [first_column, 'Sells', 'Avg Profit %', 'Cum Profit %', + f'Tot Profit {stake_currency}', 'Tot Profit %', 'Avg Duration', + 'Win Draw Loss Win%'] + def _generate_wins_draws_losses(wins, draws, losses): if wins > 0 and losses == 0: @@ -608,8 +616,10 @@ def text_table_tags(tag_type:str, tag_results: List[Dict[str, Any]], stake_curre :param stake_currency: stake-currency - used to correctly name headers :return: pretty printed table with tabulate as string """ - - headers = _get_line_header("TAG", stake_currency) + if(tag_type=="buy_tag"): + headers = _get_line_header("TAG", stake_currency) + else: + headers = _get_line_header_sell("TAG", stake_currency) floatfmt = _get_line_floatfmt(stake_currency) output = [[ t['key'], t['trades'], t['profit_mean_pct'], t['profit_sum_pct'], t['profit_total_abs'],