mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-03 18:43:04 +00:00
Update the documentation from the PR review
This commit is contained in:
@@ -128,22 +128,22 @@ automatically. Testdata files will not be updated until your specify it.
|
||||
### Run a backtesting against the currencies listed in your config file
|
||||
**With 5 min tickers (Per default)**
|
||||
```bash
|
||||
python3 ./freqtrade/main.py -c config.json backtesting --realistic-simulation
|
||||
python3 ./freqtrade/main.py backtesting --realistic-simulation
|
||||
```
|
||||
|
||||
**With 1 min tickers**
|
||||
```bash
|
||||
python3 ./freqtrade/main.py -c config.json backtesting --realistic-simulation --ticker-interval 1
|
||||
python3 ./freqtrade/main.py backtesting --realistic-simulation --ticker-interval 1
|
||||
```
|
||||
|
||||
**Reload your testdata files**
|
||||
```bash
|
||||
python3 ./freqtrade/main.py -c config.json backtesting --realistic-simulation --refresh-pairs-cached
|
||||
python3 ./freqtrade/main.py backtesting --realistic-simulation --refresh-pairs-cached
|
||||
```
|
||||
|
||||
**With live data (do not alter your testdata files)**
|
||||
```bash
|
||||
python3 ./freqtrade/main.py -c config.json backtesting --realistic-simulation --live
|
||||
python3 ./freqtrade/main.py backtesting --realistic-simulation --live
|
||||
```
|
||||
|
||||
## Find optimal parameters with Hyperopt
|
||||
|
||||
@@ -43,7 +43,7 @@ cd freqtrade
|
||||
cp config.json.example config.json
|
||||
```
|
||||
To edit the config please refer to the [Bot Configuration](https://github.com/gcarq/freqtrade/blob/develop/docs/configuration.md) page
|
||||
5. Create your DB file
|
||||
5. Create your DB file (Optional, the bot will create it if it is missing)
|
||||
```bash
|
||||
# For Production
|
||||
touch tradesv3.sqlite
|
||||
@@ -171,16 +171,12 @@ If you are on a different Linux OS you maybe have to adapt things like:
|
||||
|
||||
### 2.3. MacOS installation
|
||||
|
||||
**2.3.1. Install git and wget**
|
||||
**2.3.1. Install Python 3.6, git and wget**
|
||||
```bash
|
||||
brew install wget git
|
||||
brew install python3 git wget
|
||||
```
|
||||
|
||||
**2.3.2. Install Python 3.6**
|
||||
- [Python 3.6 MacOS offical page](https://www.python.org/downloads/mac-osx/)
|
||||
|
||||
|
||||
**2.3.3. [Optional] Install MongoDB**
|
||||
**2.3.2. [Optional] Install MongoDB**
|
||||
Install MongoDB if you plan to optimize your strategy with Hyperopt.
|
||||
```bash
|
||||
curl -O https://fastdl.mongodb.org/osx/mongodb-osx-ssl-x86_64-3.4.10.tgz
|
||||
@@ -208,7 +204,6 @@ python3.6 -m venv .env
|
||||
source .env/bin/activate
|
||||
pip3.6 install -r requirements.txt
|
||||
pip3.6 install -e .
|
||||
pip3.6 install hyperopt
|
||||
```
|
||||
|
||||
## 6. Run the bot
|
||||
|
||||
Reference in New Issue
Block a user