From e7d71d01c0872badb726ca735cab27a09397e418 Mon Sep 17 00:00:00 2001 From: Sam Germain Date: Thu, 3 Feb 2022 20:39:47 -0600 Subject: [PATCH] removed plotting todo --- freqtrade/plot/plotting.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/freqtrade/plot/plotting.py b/freqtrade/plot/plotting.py index 3a5ff4311..fee84e5ea 100644 --- a/freqtrade/plot/plotting.py +++ b/freqtrade/plot/plotting.py @@ -431,7 +431,6 @@ def generate_candlestick_graph(pair: str, data: pd.DataFrame, trades: pd.DataFra ) fig.add_trace(candles, 1, 1) - # TODO-lev: Needs short equivalent if 'enter_long' in data.columns: df_buy = data[data['enter_long'] == 1] if len(df_buy) > 0: @@ -537,7 +536,7 @@ def generate_profit_graph(pairs: str, data: Dict[str, pd.DataFrame], "Profit per pair", "Parallelism", "Underwater", - ]) + ]) fig['layout'].update(title="Freqtrade Profit plot") fig['layout']['yaxis1'].update(title='Price') fig['layout']['yaxis2'].update(title=f'Profit {stake_currency}')