Remove old var from strategy interface

This commit is contained in:
Timothy Pogue 2022-08-21 22:49:42 -06:00
parent 6f5478cc02
commit 4fa01548f6
1 changed files with 0 additions and 1 deletions

View File

@ -125,7 +125,6 @@ class IStrategy(ABC, HyperStrategyMixin):
self.config = config
# Dict to determine if analysis is necessary
self._last_candle_seen_per_pair: Dict[str, datetime] = {}
self._last_candle_seen_external: Dict[str, datetime] = {}
super().__init__(config)
# Gather informative pairs from @informative-decorated methods.