sl percentage removed form rpc test

This commit is contained in:
Misagh 2019-03-28 16:26:59 +01:00
parent e11eb4775e
commit 2f3f5f19cd
2 changed files with 0 additions and 3 deletions

View File

@ -97,11 +97,9 @@ class RPC(object):
current_rate = self._freqtrade.get_sell_rate(trade.pair, False)
except DependencyException:
current_rate = NAN
current_profit = trade.calc_profit_percent(current_rate)
fmt_close_profit = (f'{round(trade.close_profit * 100, 2):.2f}%'
if trade.close_profit else None)
results.append(dict(
trade_id=trade.id,
pair=trade.pair,

View File

@ -202,7 +202,6 @@ def test_status(default_conf, update, mocker, fee, ticker, markets) -> None:
'close_profit': None,
'current_profit': -0.59,
'stop_loss': 1.099e-05,
'stop_loss_percentage': '-2%',
'open_order': '(limit buy rem=0.00000000)'
}]),
_status_table=status_table,