From e0883a4ea014233c20750922fdddcb0fc0c86176 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 17 Aug 2022 10:55:59 +0200 Subject: [PATCH] Improve doc wording --- docs/strategy-customization.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/strategy-customization.md b/docs/strategy-customization.md index def3b77f1..221c863ec 100644 --- a/docs/strategy-customization.md +++ b/docs/strategy-customization.md @@ -630,7 +630,7 @@ The strategy might look something like this: *Scan through the top 10 pairs by volume using the `VolumePairList` every 5 minutes and use a 14 day RSI to buy and sell.* -Due to the limited available data, it's very difficult to resample `5m` candles into daily candles for use in a 14 day RSI. Most exchanges limit us to just 500 candles which effectively gives us around 1.74 daily candles. We need 14 days at least! +Due to the limited available data, it's very difficult to resample `5m` candles into daily candles for use in a 14 day RSI. Most exchanges limit us to just 500-1000 candles which effectively gives us around 1.74 daily candles. We need 14 days at least! Since we can't resample the data we will have to use an informative pair; and since the whitelist will be dynamic we don't know which pair(s) to use. @@ -732,7 +732,7 @@ if self.dp: data returned from the exchange and add appropriate error handling / defaults. !!! Warning "Warning about backtesting" - This method will always return up-to-date values - so usage during backtesting / hyperopt will lead to wrong results. + This method will always return up-to-date values - so usage during backtesting / hyperopt without runmode checks will lead to wrong results. ### Send Notification