From 95732e8991094668ab2cc43224503177709905a9 Mon Sep 17 00:00:00 2001 From: hoeckxer Date: Tue, 5 Jan 2021 21:03:23 +0100 Subject: [PATCH] Clarification in documentation Signed-off-by: hoeckxer --- docs/includes/protections.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/includes/protections.md b/docs/includes/protections.md index 87db17fd8..7d2107bee 100644 --- a/docs/includes/protections.md +++ b/docs/includes/protections.md @@ -62,9 +62,9 @@ The below example stops trading for all pairs for 4 candles after the last trade #### MaxDrawdown -`MaxDrawdown` uses all trades within `lookback_period` (in minutes) to determine the maximum drawdown. If the drawdown is below `max_allowed_drawdown`, trading will stop for `stop_duration` (in minutes) after the last trade - assuming that the bot needs some time to let markets recover. +`MaxDrawdown` uses all trades within `lookback_period` (in minutes or candles) to determine the maximum drawdown. If the drawdown is below `max_allowed_drawdown`, trading will stop for `stop_duration` (in minutes or candles) after the last trade - assuming that the bot needs some time to let markets recover. -The below sample stops trading for 12 candles if max-drawdown is > 20% considering all trades within the last 48 candles. +The below sample stops trading for 12 candles if max-drawdown is > 20% considering all trades within the last 48 candles. If desired, `lookback_period_minutes` and/or `stop_duration_minutes` can be used. ```json "protections": [