From 1792aebaf6d4b0ecb590d80b91f60b0558adf249 Mon Sep 17 00:00:00 2001 From: Gerald Lonlas Date: Sat, 20 Jan 2018 00:18:55 -0800 Subject: [PATCH] Fix doc feedbacks --- docs/bot-optimization.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/bot-optimization.md b/docs/bot-optimization.md index f94bb5206..7900e6dd2 100644 --- a/docs/bot-optimization.md +++ b/docs/bot-optimization.md @@ -14,7 +14,7 @@ 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 guess you have a strategy file `awesome-strategy.py`: +Let assume you have a strategy 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 awesome-strategy` (the parameter is the name of the file without '.py') @@ -132,7 +132,7 @@ def populate_indicators(dataframe: DataFrame) -> DataFrame: **Want more indicators example?** Look into the [user_data/strategies/test_strategy.py](https://github.com/gcarq/freqtrade/blob/develop/user_data/strategies/test_strategy.py). -Then uncomment indicateur you need. +Then uncomment indicators you need. ### Where is the default strategy?