Correct exception messages
This commit is contained in:
parent
8b485d197a
commit
8b0a02db8e
@ -31,9 +31,9 @@ class RangeStabilityFilterMax(IPairList):
|
|||||||
self._pair_cache: TTLCache = TTLCache(maxsize=1000, ttl=self._refresh_period)
|
self._pair_cache: TTLCache = TTLCache(maxsize=1000, ttl=self._refresh_period)
|
||||||
|
|
||||||
if self._days < 1:
|
if self._days < 1:
|
||||||
raise OperationalException("RangeStabilityFilter requires lookback_days to be >= 1")
|
raise OperationalException("RangeStabilityFilterMax requires lookback_days to be >= 1")
|
||||||
if self._days > exchange.ohlcv_candle_limit('1d'):
|
if self._days > exchange.ohlcv_candle_limit('1d'):
|
||||||
raise OperationalException("RangeStabilityFilter requires lookback_days to not "
|
raise OperationalException("RangeStabilityFilterMax requires lookback_days to not "
|
||||||
"exceed exchange max request size "
|
"exceed exchange max request size "
|
||||||
f"({exchange.ohlcv_candle_limit('1d')})")
|
f"({exchange.ohlcv_candle_limit('1d')})")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user