Rename function to adjust_min_max

This commit is contained in:
Matthias
2019-03-16 20:06:15 +01:00
parent 01733c94fa
commit fc360608b7
3 changed files with 7 additions and 7 deletions

View File

@@ -254,7 +254,7 @@ class IStrategy(ABC):
current_rate = low or rate
current_profit = trade.calc_profit_percent(current_rate)
trade.adjust_high_low(current_rate)
trade.adjust_min_max_rates(current_rate)
stoplossflag = self.stop_loss_reached(current_rate=current_rate, trade=trade,
current_time=date, current_profit=current_profit,