From 7edbae893d0da0ba3b8c377426c954e131a1f263 Mon Sep 17 00:00:00 2001 From: gcarq Date: Sun, 25 Mar 2018 16:42:20 +0200 Subject: [PATCH] docs: fix typos --- docs/bot-optimization.md | 6 +++--- docs/bot-usage.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/bot-optimization.md b/docs/bot-optimization.md index 7e64cd95a..00938adbe 100644 --- a/docs/bot-optimization.md +++ b/docs/bot-optimization.md @@ -14,12 +14,12 @@ Since the version `0.16.0` the bot allows using custom strategy file. This is very simple. Copy paste your strategy file into the folder `user_data/strategies`. -Let assume you have a class called `AwesomeStragety` in the file `awesome-strategy.py`: +Let assume you have a class called `AwesomeStrategy` in the file `awesome-strategy.py`: 1. Move your file into `user_data/strategies` (you should have `user_data/strategies/awesome-strategy.py` -2. Start the bot with the param `--strategy AwesomeStragety` (the parameter is the class name) +2. Start the bot with the param `--strategy AwesomeStrategy` (the parameter is the class name) ```bash -python3 ./freqtrade/main.py --strategy AwesomeStragety +python3 ./freqtrade/main.py --strategy AwesomeStrategy ``` ## Change your strategy diff --git a/docs/bot-usage.md b/docs/bot-usage.md index b00377982..ea9b1e4d8 100644 --- a/docs/bot-usage.md +++ b/docs/bot-usage.md @@ -57,7 +57,7 @@ To load a strategy, simply pass the class name (e.g.: `CustomStrategy`) in this **Example:** In `user_data/strategies` you have a file `my_awesome_strategy.py` which has -a strategy class called `AwesomeStrategy` to load it: +a strategy class called `AwesomeStrategy` to load it: ```bash python3 ./freqtrade/main.py --strategy AwesomeStrategy ```