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

@@ -49,7 +49,7 @@ The bot allows you to select which configuration file you want to use. Per
default, the bot will load the file `./config.json`
```bash
python3 freqtrade -c path/far/far/away/config.json
freqtrade -c path/far/far/away/config.json
```
### How to use multiple configuration files?
@@ -65,13 +65,13 @@ empty key and secrete values while running in the Dry Mode (which does not actua
require them):
```bash
python3 freqtrade -c ./config.json
freqtrade -c ./config.json
```
and specify both configuration files when running in the normal Live Trade Mode:
```bash
python3 freqtrade -c ./config.json -c path/to/secrets/keys.config.json
freqtrade -c ./config.json -c path/to/secrets/keys.config.json
```
This could help you hide your private Exchange key and Exchange secrete on you local machine
@@ -97,7 +97,7 @@ In `user_data/strategies` you have a file `my_awesome_strategy.py` which has
a strategy class called `AwesomeStrategy` to load it:
```bash
python3 freqtrade --strategy AwesomeStrategy
freqtrade --strategy AwesomeStrategy
```
If the bot does not find your strategy file, it will display in an error
@@ -111,7 +111,7 @@ Learn more about strategy file in
This parameter allows you to add an additional strategy lookup path, which gets
checked before the default locations (The passed path must be a directory!):
```bash
python3 freqtrade --strategy AwesomeStrategy --strategy-path /some/directory
freqtrade --strategy AwesomeStrategy --strategy-path /some/directory
```
#### How to install a strategy?
@@ -138,7 +138,7 @@ using `--db-url`. This can also be used to specify a custom database
in production mode. Example command:
```bash
python3 freqtrade -c config.json --db-url sqlite:///tradesv3.dry_run.sqlite
freqtrade -c config.json --db-url sqlite:///tradesv3.dry_run.sqlite
```
## Backtesting commands