Skip to content

Commit

Permalink
my fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yazeed committed Feb 15, 2020
1 parent 44ac240 commit 6e71f2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions freqtrade/rpc/rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,9 @@ def _rpc_status_table(self, stake_currency: str,
profit_str += f" ({fiat_profit:.2f})"
trades_list.append([
trade.id,
trade.pair + '*' if (trade.open_order_id is not None
and trade.close_rate_requested is None) else ''
+ '**' if (trade.close_rate_requested is not None) else '',
trade.pair + ['', '*'][trade.open_order_id is not None
and trade.close_rate_requested is None]
+ ['', '**'][trade.close_rate_requested is not None],
shorten_date(arrow.get(trade.open_date).humanize(only_distance=True)),
profit_str
])
Expand Down

0 comments on commit 6e71f2f

Please sign in to comment.