Make it clear in samples that strategy is mandatory

This commit is contained in:
Matthias
2020-09-28 15:22:06 +02:00
parent 15bb0af1b3
commit 17e605e130
3 changed files with 5 additions and 11 deletions

View File

@@ -140,13 +140,7 @@ Since hyperopt uses Bayesian search, running for too many epochs may not produce
It's therefore recommended to run between 500-1000 epochs over and over until you hit at least 10.000 epochs in total (or are satisfied with the result). You can best judge by looking at the results - if the bot keeps discovering better strategies, it's best to keep on going.
```bash
freqtrade hyperopt -e 1000
```
or if you want intermediate result to see
```bash
for i in {1..100}; do freqtrade hyperopt -e 1000; done
freqtrade hyperopt --hyperop SampleHyperopt --strategy SampleStrategy -e 1000
```
### Why does it take a long time to run hyperopt?