mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-11-29 08:33:07 +00:00
chore: Move local Import out of the loop
This commit is contained in:
@@ -71,6 +71,8 @@ def populate_dataframe_with_trades(
|
|||||||
:param trades: Trades to populate with
|
:param trades: Trades to populate with
|
||||||
:return: Dataframe with trades populated
|
:return: Dataframe with trades populated
|
||||||
"""
|
"""
|
||||||
|
from freqtrade.exchange import timeframe_to_next_date
|
||||||
|
|
||||||
timeframe = config["timeframe"]
|
timeframe = config["timeframe"]
|
||||||
config_orderflow = config["orderflow"]
|
config_orderflow = config["orderflow"]
|
||||||
|
|
||||||
@@ -105,8 +107,6 @@ def populate_dataframe_with_trades(
|
|||||||
for candle_start, trades_grouped_df in trades_grouped_by_candle_start:
|
for candle_start, trades_grouped_df in trades_grouped_by_candle_start:
|
||||||
is_between = candle_start == dataframe["date"]
|
is_between = candle_start == dataframe["date"]
|
||||||
if is_between.any():
|
if is_between.any():
|
||||||
from freqtrade.exchange import timeframe_to_next_date
|
|
||||||
|
|
||||||
candle_next = timeframe_to_next_date(timeframe, candle_start)
|
candle_next = timeframe_to_next_date(timeframe, candle_start)
|
||||||
if candle_next not in trades_grouped_by_candle_start.groups:
|
if candle_next not in trades_grouped_by_candle_start.groups:
|
||||||
logger.warning(
|
logger.warning(
|
||||||
|
|||||||
Reference in New Issue
Block a user