Improve docstring of is_pair_locked

This commit is contained in:
Matthias 2020-08-24 17:18:57 +02:00
parent 354a406248
commit fca11160e4

View File

@ -301,6 +301,11 @@ class IStrategy(ABC):
def is_pair_locked(self, pair: str, candle_date: datetime = None) -> bool:
"""
Checks if a pair is currently locked
The 2nd, optional parameter ensures that locks are applied until the new candle arrives,
and not stop at 14:00:00 - while the next candle arrives at 14:00:02 leaving a gap
of 2 seconds for a buy to happen on an old signal.
:param: pair: "Pair to check"
:param candle_date: Date of the last candle. Optional, defaults to current date
"""
if pair not in self._pair_locked_until:
return False