mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-11-29 08:33:07 +00:00
Simplify some pairlist conditions
This commit is contained in:
@@ -125,8 +125,7 @@ class VolatilityFilter(IPairList):
|
|||||||
:return: True if the pair can stay, false if it should be removed
|
:return: True if the pair can stay, false if it should be removed
|
||||||
"""
|
"""
|
||||||
# Check symbol in cache
|
# Check symbol in cache
|
||||||
cached_res = self._pair_cache.get(pair, None)
|
if (cached_res := self._pair_cache.get(pair, None)) is not None:
|
||||||
if cached_res is not None:
|
|
||||||
return cached_res
|
return cached_res
|
||||||
|
|
||||||
result = False
|
result = False
|
||||||
|
|||||||
@@ -123,8 +123,7 @@ class RangeStabilityFilter(IPairList):
|
|||||||
:return: True if the pair can stay, false if it should be removed
|
:return: True if the pair can stay, false if it should be removed
|
||||||
"""
|
"""
|
||||||
# Check symbol in cache
|
# Check symbol in cache
|
||||||
cached_res = self._pair_cache.get(pair, None)
|
if (cached_res := self._pair_cache.get(pair, None)) is not None:
|
||||||
if cached_res is not None:
|
|
||||||
return cached_res
|
return cached_res
|
||||||
|
|
||||||
result = True
|
result = True
|
||||||
|
|||||||
Reference in New Issue
Block a user