From 5e7d883732537594d8e3925af451df5a54aca822 Mon Sep 17 00:00:00 2001 From: Cygra Wang Date: Sun, 23 Feb 2025 15:11:05 +0800 Subject: [PATCH] fix: typo in strategy-customization.md --- 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 11b71caa9..df8ba4c97 100644 --- a/docs/strategy-customization.md +++ b/docs/strategy-customization.md @@ -513,7 +513,7 @@ By default, freqtrade will attempt to load strategies from all `.py` files withi Assuming your strategy is called `AwesomeStrategy`, stored in the file `user_data/strategies/AwesomeStrategy.py`, then you can start freqtrade in dry (or live, depending on your configuration) mode with: ```bash - freqtrade trade --strategy AwesomeStrategy` +freqtrade trade --strategy AwesomeStrategy ``` Note that we're using the class name, not the file name.