simplify some code

This commit is contained in:
Matthias
2018-10-30 20:23:31 +01:00
parent fe2c158e59
commit 8c93760a6d
2 changed files with 3 additions and 3 deletions

View File

@@ -217,7 +217,7 @@ class Backtesting(object):
elif sell.sell_type == (SellType.ROI):
# get entry in min_roi >= to trade duration
roi_entry = max(list(filter(lambda x: trade_dur >= x,
list(self.strategy.minimal_roi.keys()))))
self.strategy.minimal_roi.keys())))
# set close-rate to min-roi
closerate = trade.open_rate + trade.open_rate * \
self.strategy.minimal_roi[roi_entry]