From 06276e1d24d6c7394bbff7395499da405431bc13 Mon Sep 17 00:00:00 2001 From: gcarq Date: Tue, 27 Mar 2018 18:39:49 +0200 Subject: [PATCH] bot-optimization.md: add strategy-path --- docs/bot-optimization.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/bot-optimization.md b/docs/bot-optimization.md index 00938adbe..b9ff3fe40 100644 --- a/docs/bot-optimization.md +++ b/docs/bot-optimization.md @@ -42,6 +42,13 @@ You can test it with the parameter: `--strategy TestStrategy` python3 ./freqtrade/main.py --strategy AwesomeStrategy ``` +### Specify custom strategy location +If you want to use a strategy from a different folder you can pass `--strategy-path` + +```bash +python3 ./freqtrade/main.py --strategy AwesomeStrategy --strategy-path /some/folder +``` + **For the following section we will use the [user_data/strategies/test_strategy.py](https://github.com/gcarq/freqtrade/blob/develop/user_data/strategies/test_strategy.py) file as reference.**