improve data aggregation

This commit is contained in:
Gert Wohlgemuth
2018-06-05 13:59:45 -07:00
parent 7e8461b8fe
commit 19a525265f
3 changed files with 118 additions and 39 deletions

View File

@@ -291,8 +291,8 @@ class Backtesting(object):
)
# return date for data storage
self.aggregate(data, results)
return results
table = self.aggregate(data, results)
return (results, table)
def setup_configuration(args: Namespace) -> Dict[str, Any]: