remove unused result data variables
This commit is contained in:
parent
447fa5fca0
commit
be3840bd14
@ -137,15 +137,10 @@ def optimizer(params):
|
|||||||
_CURRENT_TRIES += 1
|
_CURRENT_TRIES += 1
|
||||||
|
|
||||||
result_data = {
|
result_data = {
|
||||||
'trade_count': trade_count,
|
|
||||||
'total_profit': total_profit,
|
|
||||||
'loss': loss,
|
'loss': loss,
|
||||||
'avg_profit': results.profit_percent.mean() * 100.0,
|
|
||||||
'avg_duration': results.duration.mean() * 5,
|
|
||||||
'current_tries': _CURRENT_TRIES,
|
'current_tries': _CURRENT_TRIES,
|
||||||
'total_tries': TOTAL_TRIES,
|
'total_tries': TOTAL_TRIES,
|
||||||
'result': result,
|
'result': result,
|
||||||
'results': results
|
|
||||||
}
|
}
|
||||||
log_results(result_data)
|
log_results(result_data)
|
||||||
|
|
||||||
@ -154,7 +149,7 @@ def optimizer(params):
|
|||||||
'status': STATUS_OK,
|
'status': STATUS_OK,
|
||||||
'result': result,
|
'result': result,
|
||||||
'total_profit': total_profit,
|
'total_profit': total_profit,
|
||||||
'avg_profit': result_data['avg_profit'],
|
'avg_profit': results.profit_percent.mean() * 100.0,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user