Merge pull request #839 from freqtrade/fix/incorrect_folder_name_userdata

Fix folder names in custom datadir documentation
This commit is contained in:
Janne Sinivirta 2018-06-04 11:24:09 +03:00 committed by GitHub
commit 4b8f382cfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,17 +97,17 @@ The full timerange specification:
To update your testdata directory, or download into another testdata directory:
```bash
mkdir -p user_data/data/testdata-20180113
cp freqtrade/tests/testdata/pairs.json user_data/data-20180113
cd user_data/data-20180113
cp freqtrade/tests/testdata/pairs.json user_data/data/testdata-20180113
cd user_data/data/testdata-20180113
```
Possibly edit pairs.json file to include/exclude pairs
Possibly edit `pairs.json` file to include/exclude pairs
```bash
python3 freqtrade/tests/testdata/download_backtest_data.py -p pairs.json
```
The script will read your pairs.json file, and download ticker data
The script will read your `pairs.json` file, and download ticker data
into the current working directory.