Move create_pair_list to pairlistmanager

This commit is contained in:
hroff-1902
2020-05-18 13:54:21 +03:00
parent 5f2a871637
commit 627c5059f0
6 changed files with 16 additions and 18 deletions

View File

@@ -12,10 +12,10 @@ from typing import Dict, NamedTuple, Optional, Tuple
import arrow
from pandas import DataFrame
from freqtrade.data.common import ListPairsWithTimeframes
from freqtrade.data.dataprovider import DataProvider
from freqtrade.exceptions import StrategyError
from freqtrade.exchange import timeframe_to_minutes
from freqtrade.pairlist.pairlistmanager import ListPairsWithTimeframes
from freqtrade.persistence import Trade
from freqtrade.strategy.strategy_wrapper import strategy_safe_wrapper
from freqtrade.wallets import Wallets