mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-01-25 08:20:25 +00:00
fix: minor missing statement in detail backtest fallback
This commit is contained in:
@@ -1466,6 +1466,7 @@ class Backtesting:
|
|||||||
].copy()
|
].copy()
|
||||||
if len(detail_data) == 0:
|
if len(detail_data) == 0:
|
||||||
# Fall back to "regular" data if no detail data was found for this candle
|
# Fall back to "regular" data if no detail data was found for this candle
|
||||||
|
self.dataprovider._set_dataframe_max_date(current_time)
|
||||||
self.backtest_loop(row, pair, current_time, end_date, trade_dir)
|
self.backtest_loop(row, pair, current_time, end_date, trade_dir)
|
||||||
continue
|
continue
|
||||||
detail_data.loc[:, "enter_long"] = row[LONG_IDX]
|
detail_data.loc[:, "enter_long"] = row[LONG_IDX]
|
||||||
|
|||||||
Reference in New Issue
Block a user