rename LowPriceFilter to PrieFilter

This commit is contained in:
Matthias
2019-11-19 06:41:05 +01:00
parent c22b00b303
commit a8855bf795
5 changed files with 15 additions and 14 deletions

View File

@@ -7,7 +7,7 @@ from freqtrade.pairlist.IPairList import IPairList
logger = logging.getLogger(__name__)
class LowPriceFilter(IPairList):
class PriceFilter(IPairList):
def __init__(self, exchange, pairlistmanager, config, pairlistconfig: dict,
pairlist_pos: int) -> None:
@@ -32,7 +32,7 @@ class LowPriceFilter(IPairList):
def _validate_ticker_lowprice(self, ticker) -> bool:
"""
Check if if one price-step is > than a certain barrier.
Check if if one price-step (pip) is > than a certain barrier.
:param ticker: ticker dict as returned from ccxt.load_markets()
:param precision: Precision
:return: True if the pair can stay, false if it should be removed