mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Merge pull request #4465 from freqtrade/dependabot/pip/develop/arrow-1.0.2
Bump arrow from 0.17.0 to 1.0.2
This commit is contained in:
commit
6eef6d41bc
|
@ -443,16 +443,14 @@ class Backtesting:
|
|||
|
||||
data, timerange = self.load_bt_data()
|
||||
|
||||
min_date = None
|
||||
max_date = None
|
||||
for strat in self.strategylist:
|
||||
min_date, max_date = self.backtest_one_strategy(strat, data, timerange)
|
||||
if len(self.strategylist) > 0:
|
||||
stats = generate_backtest_stats(data, self.all_results,
|
||||
min_date=min_date, max_date=max_date)
|
||||
|
||||
stats = generate_backtest_stats(data, self.all_results,
|
||||
min_date=min_date, max_date=max_date)
|
||||
if self.config.get('export', False):
|
||||
store_backtest_stats(self.config['exportfilename'], stats)
|
||||
|
||||
if self.config.get('export', False):
|
||||
store_backtest_stats(self.config['exportfilename'], stats)
|
||||
|
||||
# Show backtest results
|
||||
show_backtest_results(self.config, stats)
|
||||
# Show backtest results
|
||||
show_backtest_results(self.config, stats)
|
||||
|
|
|
@ -7,7 +7,7 @@ cryptography==3.4.6
|
|||
aiohttp==3.7.4
|
||||
SQLAlchemy==1.3.23
|
||||
python-telegram-bot==13.3
|
||||
arrow==0.17.0
|
||||
arrow==1.0.2
|
||||
cachetools==4.2.1
|
||||
requests==2.25.1
|
||||
urllib3==1.26.3
|
||||
|
|
Loading…
Reference in New Issue
Block a user