Skip to content

Commit

Permalink
Align quotes in same area
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Jan 31, 2020
1 parent 907a611 commit c396ad4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions freqtrade/optimize/optimize_reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ def generate_text_table_sell_reason(
loss = len(result[result['profit_abs'] < 0])
profit_mean = round(result['profit_percent'].mean() * 100.0, 2)
profit_sum = round(result["profit_percent"].sum() * 100.0, 2)
profit_tot = result["profit_abs"].sum()
profit_percent_tot = round(result["profit_percent"].sum() * 100.0 / max_open_trades, 2)
profit_tot = result['profit_abs'].sum()
profit_percent_tot = round(result['profit_percent'].sum() * 100.0 / max_open_trades, 2)
tabular_data.append(
[
reason.value,
Expand Down

0 comments on commit c396ad4

Please sign in to comment.