mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-14 12:13:57 +00:00
chore: improve clarity of argument name
This commit is contained in:
parent
aa8cefc110
commit
bd7f0383d1
|
@ -1429,10 +1429,10 @@ class Backtesting:
|
|||
indexes: dict = defaultdict(int)
|
||||
|
||||
# Loop timerange and get candle for each pair at that point in time
|
||||
for current_time, pair, is_first in self.time_pair_generator(
|
||||
for current_time, pair, is_first_call in self.time_pair_generator(
|
||||
start_date, end_date, self.timeframe_td, list(data.keys())
|
||||
):
|
||||
if is_first:
|
||||
if is_first_call:
|
||||
self.check_abort()
|
||||
strategy_safe_wrapper(self.strategy.bot_loop_start, supress_error=True)(
|
||||
current_time=current_time
|
||||
|
|
Loading…
Reference in New Issue
Block a user