2019-08-22 14:02:03 +00:00
|
|
|
from argparse import Namespace
|
|
|
|
|
|
|
|
from freqtrade.state import RunMode
|
|
|
|
from freqtrade.utils import setup_utils_configuration
|
|
|
|
|
|
|
|
|
|
|
|
def start_plot_dataframe(args: Namespace) -> None:
|
|
|
|
"""
|
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.
|
|
|
|
from freqtrade.plot.plotting import analyse_and_plot_pairs
|
2019-08-31 13:14:57 +00:00
|
|
|
config = setup_utils_configuration(args, RunMode.PLOT)
|
2019-08-22 14:02:03 +00:00
|
|
|
|
|
|
|
analyse_and_plot_pairs(config)
|
2019-08-22 14:51:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
def start_plot_profit(args: Namespace) -> None:
|
|
|
|
"""
|
|
|
|
Entrypoint for plot_profit
|
|
|
|
"""
|
|
|
|
# Import here to avoid errors if plot-dependencies are not installed.
|
|
|
|
from freqtrade.plot.plotting import plot_profit
|
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)
|