From 1e18b35f229178a82247225d01a62471c9738447 Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 27 Oct 2023 07:08:38 +0200 Subject: [PATCH] Change box type to tip --- docs/strategy-customization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/strategy-customization.md b/docs/strategy-customization.md index fa7db8b18..e2cdad81a 100644 --- a/docs/strategy-customization.md +++ b/docs/strategy-customization.md @@ -1008,7 +1008,7 @@ The following lists some common patterns which should be avoided to prevent frus - don't use `dataframe['volume'].mean()`. This uses the full DataFrame for backtesting, including data from the future. Use `dataframe['volume'].rolling().mean()` instead - don't use `.resample('1h')`. This uses the left border of the interval, so moves data from an hour to the start of the hour. Use `.resample('1h', label='right')` instead. -!!! Hint "Identifying problems" +!!! Tip "Identifying problems" You may also want to check the 2 helper commands [lookahead-analysis](lookahead-analysis.md) and [recursive-analysis](recursive-analysis.md), which can each help you figure out problems with your strategy in different ways. Please treat them as what they are - helpers to identify most common problems. A negative result of each does not guarantee that there's none of the above errors included.