From 909df0d7bbe2094a53c0799c4f17d42b11a2debb Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 9 May 2019 08:56:27 +0200 Subject: [PATCH] Improve doc wording --- docs/bot-optimization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/bot-optimization.md b/docs/bot-optimization.md index c83e4d0b1..5e080eab1 100644 --- a/docs/bot-optimization.md +++ b/docs/bot-optimization.md @@ -367,7 +367,7 @@ def populate_buy_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame: return dataframe ``` -Printing more than a few rows is possible (don't use `.tail()`), however not recommended, as that will be very verbose (~500 lines per pair every 5 seconds). +Printing more than a few rows is also possible (simply use `print(dataframe)` instead of `print(dataframe.tail())`), however not recommended, as that will be very verbose (~500 lines per pair every 5 seconds). ### Where is the default strategy?