From fb790b2d42293009c2ce8d631d8e9e72c3f2388b Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 20 Aug 2023 13:32:32 +0200 Subject: [PATCH] Update path of config for new-config documentation --- docs/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index a89c83d28..a6bfaccf0 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -383,7 +383,7 @@ You've made it this far, so you have successfully installed freqtrade. freqtrade create-userdir --userdir user_data # Step 2 - Create a new configuration file -freqtrade new-config --config config.json +freqtrade new-config --config user_data/config.json ``` You are ready to run, read [Bot Configuration](configuration.md), remember to start with `dry_run: True` and verify that everything is working. @@ -393,7 +393,7 @@ To learn how to setup your configuration, please refer to the [Bot Configuration ### Start the Bot ```bash -freqtrade trade --config config.json --strategy SampleStrategy +freqtrade trade --config user_data/config.json --strategy SampleStrategy ``` !!! Warning