Update backtesting.md - correct instructions
Correct instructions for calling a custom strategy file To paraphrase the change: Prior - to call a custom strategy -s the strategy file name within users_data/strategies/ directory After - to call a custom strategy -s the class name within the strategy within users_data/strategies/ directory
This commit is contained in:
parent
607c895065
commit
280e8b3208
@ -55,7 +55,7 @@ python3 ./freqtrade/main.py backtesting --datadir freqtrade/tests/testdata-20180
|
||||
```bash
|
||||
python3 ./freqtrade/main.py -s TestStrategy backtesting
|
||||
```
|
||||
Where `-s TestStrategy` refers to the class name within the stratgey file `test_strategy.py` found in the `freqtrade/user_data/strategies` directory
|
||||
Where `-s TestStrategy` refers to the class name within the strategy file `test_strategy.py` found in the `freqtrade/user_data/strategies` directory
|
||||
|
||||
**Exporting trades to file**
|
||||
```bash
|
||||
|
Loading…
Reference in New Issue
Block a user