Update freqtradebot.py
This commit is contained in:
parent
5fb9511556
commit
f30580e5f2
@ -474,15 +474,13 @@ class FreqtradeBot(LoggingMixin):
|
|||||||
Once that completes, the existing trade is modified to match new data.
|
Once that completes, the existing trade is modified to match new data.
|
||||||
"""
|
"""
|
||||||
if self.strategy.max_buy_position_adjustment > -1:
|
if self.strategy.max_buy_position_adjustment > -1:
|
||||||
logger.info(f"Max adjustment buy is set to {self.strategy.max_buy_position_adjustment}.")
|
|
||||||
|
|
||||||
filled_buys = trade.select_filled_orders('buy')
|
filled_buys = trade.select_filled_orders('buy')
|
||||||
count_of_buys = len(filled_buys)
|
count_of_buys = len(filled_buys)
|
||||||
if count_of_buys > self.strategy.max_buy_position_adjustment:
|
if count_of_buys > self.strategy.max_buy_position_adjustment:
|
||||||
logger.info(f"Max adjustment buy for {trade.pair} has been reached.")
|
logger.debug(f"Max adjustment buy for {trade.pair} has been reached.")
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
logger.info(f"Max adjustment buy is set to unlimited.")
|
logger.debug(f"Max adjustment buy is set to unlimited.")
|
||||||
current_rate = self.exchange.get_rate(trade.pair, refresh=True, side="buy")
|
current_rate = self.exchange.get_rate(trade.pair, refresh=True, side="buy")
|
||||||
current_profit = trade.calc_profit_ratio(current_rate)
|
current_profit = trade.calc_profit_ratio(current_rate)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user