Prevent pandas exception on Date assignment

This commit is contained in:
Matthias
2023-07-27 06:39:31 +02:00
parent 2fcff78756
commit d6122585f7

View File

@@ -1277,7 +1277,7 @@ class RPC:
df_analyzed = trim_dataframe(df_analyzed, timerange_parsed, startup_candles=startup_candles)
return RPC._convert_dataframe_to_dict(strategy.get_strategy_name(), pair, timeframe,
df_analyzed, dt_now())
df_analyzed.copy(), dt_now())
def _rpc_plot_config(self) -> Dict[str, Any]:
if (self._freqtrade.strategy.plot_config and