don't use "folder" ...

This commit is contained in:
Matthias
2019-07-31 06:54:45 +02:00
parent 0488525888
commit c3d14ab9b9
4 changed files with 6 additions and 6 deletions

View File

@@ -78,7 +78,7 @@ def analyse_and_plot_pairs(config: Dict[str, Any]):
)
store_plot_file(fig, filename=generate_plot_filename(pair, config['ticker_interval']),
folder=config['user_data_dir'] / "plot")
directory=config['user_data_dir'] / "plot")
logger.info('End of ploting process %s plots generated', pair_counter)

View File

@@ -33,7 +33,7 @@ def plot_profit(config: Dict[str, Any]) -> None:
# this could be useful to gauge the overall market trend
fig = generate_profit_graph(plot_elements["pairs"], plot_elements["tickers"], trades)
store_plot_file(fig, filename='freqtrade-profit-plot.html',
folder=config['user_data_dir'] / "plot", auto_open=True)
directory=config['user_data_dir'] / "plot", auto_open=True)
def plot_parse_args(args: List[str]) -> Dict[str, Any]: