Don't run the bot with python3 freqtrade

* we can either use `python3 -m freqtrade ...` or `freqtrade ...` - and
shorter should be better.
This commit is contained in:
Matthias
2019-07-08 17:00:34 +02:00
parent 87ff1e8cb0
commit c4fb0fd6ca
8 changed files with 29 additions and 29 deletions

View File

@@ -184,7 +184,7 @@ python3 -m pip install -e .
If this is the first time you run the bot, ensure you are running it in Dry-run `"dry_run": true,` otherwise it will start to buy and sell coins.
```bash
python3 freqtrade -c config.json
freqtrade -c config.json
```
*Note*: If you run the bot on a server, you should consider using [Docker](docker.md) or a terminal multiplexer like `screen` or [`tmux`](https://en.wikipedia.org/wiki/Tmux) to avoid that the bot is stopped on logout.