Skip to content

Commit

Permalink
Update hyperopt_commands.py
Browse files Browse the repository at this point in the history
Missed a debug print
  • Loading branch information
Fredrik81 committed Feb 9, 2020
1 parent eb3783d commit 5bf4c58
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions freqtrade/commands/hyperopt_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,6 @@ def _hyperopt_filter_trials(trials: List, filteroptions: dict) -> List:
if filteroptions['only_profitable']:
trials = [x for x in trials if x['results_metrics']['profit'] > 0]

print(trials[0])

if not filteroptions['only_best']:
if filteroptions['filter_min_avg_time'] > 0:
trials = [x for x in trials if x['results_metrics']['trade_count'] > 0]
Expand Down

0 comments on commit 5bf4c58

Please sign in to comment.