document what to do with exported backtest results

This commit is contained in:
xmatthias
2018-06-24 17:00:00 +02:00
parent 660ec6f443
commit e70cb963f7
2 changed files with 28 additions and 3 deletions

View File

@@ -117,9 +117,6 @@ class Backtesting(object):
def _store_backtest_result(self, recordfilename: Optional[str], results: DataFrame) -> None:
# columns = ["pair", "profit", "opents", "closets", "index", "duration",
# "open_rate", "close_rate", "open_at_end"]
records = [(t.pair, t.profit_percent, t.open_time.timestamp(),
t.close_time.timestamp(), t.open_index - 1, t.trade_duration,
t.open_rate, t.close_rate, t.open_at_end)