mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Use kwarg to call persistence.init()
This commit is contained in:
parent
b6e8fecbf5
commit
338f2a2322
|
@ -55,7 +55,8 @@ timeZone = pytz.UTC
|
|||
def load_trades(args: Namespace, pair: str, timerange: TimeRange) -> pd.DataFrame:
|
||||
trades: pd.DataFrame = pd.DataFrame()
|
||||
if args.db_url:
|
||||
persistence.init(args.db_url, False)
|
||||
persistence.init(args.db_url, clean_open_orders=False)
|
||||
|
||||
columns = ["pair", "profit", "open_time", "close_time",
|
||||
"open_rate", "close_rate", "duration"]
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user