From b072fae507200321d2a4cb3ce81f27e2eb879d34 Mon Sep 17 00:00:00 2001 From: hippocritical Date: Sun, 5 Mar 2023 18:48:32 +0100 Subject: [PATCH] added strategy-updater compartment inside utils.md --- docs/utils.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/utils.md b/docs/utils.md index 87c7f6aa6..3d6eda3ce 100644 --- a/docs/utils.md +++ b/docs/utils.md @@ -947,7 +947,6 @@ Common arguments: --userdir PATH, --user-data-dir PATH Path to userdata directory. ``` - ### Examples Print trades with id 2 and 3 as json @@ -955,3 +954,13 @@ Print trades with id 2 and 3 as json ``` bash freqtrade show-trades --db-url sqlite:///tradesv3.sqlite --trade-ids 2 3 --print-json ``` + +### Strategy-Updater +Updates a list strategies or all strategies within the strategies folder to be v3 compliant including futures. +If the command runs without --strategy-list then all files inside the strategies folder will be converted. +``` +usage: freqtrade strategy_updater + +optional arguments: + --strategy-list defines a list of strategies that should be converted +```