2019-09-12 18:16:39 +00:00
|
|
|
from typing import Any, Dict
|
|
|
|
|
2019-09-03 05:05:48 +00:00
|
|
|
from freqtrade import OperationalException
|
2019-08-22 14:02:03 +00:00
|
|
|
from freqtrade.state import RunMode
|
|
|
|
from freqtrade.utils import setup_utils_configuration
|
|
|
|
|
|
|
|
|
2019-09-12 18:16:39 +00:00
|
|
|
def validate_plot_args(args: Dict[str, Any]):
|
|
|
|
if not args.get('datadir') and not args.get('config'):
|
2019-09-03 05:05:48 +00:00
|
|
|
raise OperationalException(
|
|
|
|
"You need to specify either `--datadir` or `--config` "
|
|
|
|
"for plot-profit and plot-dataframe.")
|
|
|
|
|
|
|
|
|
2019-09-12 18:16:39 +00:00
|
|
|
def start_plot_dataframe(args: Dict[str, Any]) -> None:
|
2019-08-22 14:02:03 +00:00
|
|
|
"""
|
2019-08-22 14:51:00 +00:00
|
|
|
Entrypoint for dataframe plotting
|
2019-08-22 14:02:03 +00:00
|
|
|
"""
|
|
|
|
# Import here to avoid errors if plot-dependencies are not installed.
|
2019-09-05 20:00:16 +00:00
|
|
|
from freqtrade.plot.plotting import load_and_plot_trades
|
2019-09-03 05:05:48 +00:00
|
|
|
validate_plot_args(args)
|
2019-08-31 13:14:57 +00:00
|
|
|
config = setup_utils_configuration(args, RunMode.PLOT)
|
2019-08-22 14:02:03 +00:00
|
|
|
|
2019-09-05 20:00:16 +00:00
|
|
|
load_and_plot_trades(config)
|
2019-08-22 14:51:00 +00:00
|
|
|
|
|
|
|
|
2019-09-12 18:16:39 +00:00
|
|
|
def start_plot_profit(args: Dict[str, Any]) -> None:
|
2019-08-22 14:51:00 +00:00
|
|
|
"""
|
|
|
|
Entrypoint for plot_profit
|
|
|
|
"""
|
|
|
|
# Import here to avoid errors if plot-dependencies are not installed.
|
|
|
|
from freqtrade.plot.plotting import plot_profit
|
2019-09-03 05:05:48 +00:00
|
|
|
validate_plot_args(args)
|
2019-08-31 13:14:57 +00:00
|
|
|
config = setup_utils_configuration(args, RunMode.PLOT)
|
2019-08-22 14:51:00 +00:00
|
|
|
|
|
|
|
plot_profit(config)
|