Add some initial tests for plot_dataframe

This commit is contained in:
Matthias
2019-08-22 16:21:48 +02:00
parent 69c2b12879
commit f8c72feea8
4 changed files with 25 additions and 11 deletions

View File

@@ -6,7 +6,7 @@ from freqtrade.utils import setup_utils_configuration
def start_plot_dataframe(args: Namespace) -> None:
"""
Plotting dataframe
Plotting dataframe helper
"""
# Import here to avoid errors if plot-dependencies are not installed.
from freqtrade.plot.plotting import analyse_and_plot_pairs

View File

@@ -328,11 +328,11 @@ def analyse_and_plot_pairs(config: Dict[str, Any]):
"""
From configuration provided
- Initializes plot-script
-Get tickers data
-Generate Dafaframes populated with indicators and signals
-Load trades excecuted on same periods
-Generate Plotly plot objects
-Generate plot files
- Get tickers data
- Generate Dafaframes populated with indicators and signals based on configured strategy
- Load trades excecuted during the selected period
- Generate Plotly plot objects
- Generate plot files
:return: None
"""
plot_elements = init_plotscript(config)