strategy callback on_whitelist_update
This commit is contained in:
@@ -179,6 +179,7 @@ class FreqtradeBot(LoggingMixin):
|
||||
# Query trades from persistence layer
|
||||
trades = Trade.get_open_trades()
|
||||
|
||||
current_pair_whitelist = self.active_pair_whitelist
|
||||
self.active_pair_whitelist = self._refresh_active_whitelist(trades)
|
||||
|
||||
# Refreshing candles
|
||||
@@ -214,6 +215,9 @@ class FreqtradeBot(LoggingMixin):
|
||||
Trade.commit()
|
||||
self.last_process = datetime.now(timezone.utc)
|
||||
|
||||
if current_pair_whitelist != self.active_pair_whitelist:
|
||||
self.strategy.on_whitelist_update()
|
||||
|
||||
def process_stopped(self) -> None:
|
||||
"""
|
||||
Close all orders that were left open
|
||||
|
||||
Reference in New Issue
Block a user