From ab092fc77f291e1b5de9356729bf692803d59ca3 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 10 Aug 2019 15:45:41 +0200 Subject: [PATCH] Reinstate comment on backesting data --- docs/data-analysis.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/data-analysis.md b/docs/data-analysis.md index 66bb50694..ecd94445b 100644 --- a/docs/data-analysis.md +++ b/docs/data-analysis.md @@ -17,6 +17,8 @@ df = load_backtest_data("user_data/backtest_data/backtest-result.json") df.groupby("pair")["sell_reason"].value_counts() ``` +This will allow you to drill deeper into your backtest results, and perform analysis which otherwise would make the regular backtest-output very difficult to digest due to information overload. + ### Load live trading results into a pandas dataframe ``` python