From 2034527faa4c96d518f9a0506799fac89f1f0f56 Mon Sep 17 00:00:00 2001 From: hroff-1902 <47309513+hroff-1902@users.noreply.github.com> Date: Thu, 6 Feb 2020 17:45:15 +0300 Subject: [PATCH] Update docs/strategy-customization.md Co-Authored-By: Matthias --- 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 cc3f8ee33..717baf4db 100644 --- a/docs/strategy-customization.md +++ b/docs/strategy-customization.md @@ -536,7 +536,7 @@ freqtrade trade --strategy AwesomeStrategy --strategy-path /some/directory The strategies can be derived from other strategies. This avoids duplication of your custom strategy code. You can use this technique to override small parts of your main strategy, leaving the rest untouched: -``` +``` python class MyAwesomeStrategy(IStrategy): ... stoploss = 0.13