stable/docs/backtesting.md

566 lines
32 KiB
Markdown
Raw Normal View History

# Backtesting
2018-06-13 04:52:17 +00:00
2019-09-21 08:09:14 +00:00
This page explains how to validate your strategy performance by using Backtesting.
2019-09-21 08:09:14 +00:00
Backtesting requires historic data to be available.
2019-09-24 05:05:30 +00:00
To learn how to get data for the pairs and exchange you're interested in, head over to the [Data Downloading](data-download.md) section of the documentation.
## Backtesting command reference
```
usage: freqtrade backtesting [-h] [-v] [--logfile FILE] [-V] [-c PATH]
[-d PATH] [--userdir PATH] [-s NAME]
[--strategy-path PATH] [-i TIMEFRAME]
[--timerange TIMERANGE]
[--data-format-ohlcv {json,jsongz,hdf5}]
[--max-open-trades INT]
[--stake-amount STAKE_AMOUNT] [--fee FLOAT]
2021-04-17 08:48:24 +00:00
[-p PAIRS [PAIRS ...]] [--eps] [--dmmp]
[--enable-protections]
2021-02-10 18:45:59 +00:00
[--dry-run-wallet DRY_RUN_WALLET]
[--timeframe-detail TIMEFRAME_DETAIL]
[--strategy-list STRATEGY_LIST [STRATEGY_LIST ...]]
[--export {none,trades}] [--export-filename PATH]
[--breakdown {day,week,month} [{day,week,month} ...]]
[--cache {none,day,week,month}]
optional arguments:
-h, --help show this help message and exit
-i TIMEFRAME, --timeframe TIMEFRAME, --ticker-interval TIMEFRAME
2021-04-03 14:54:47 +00:00
Specify timeframe (`1m`, `5m`, `30m`, `1h`, `1d`).
--timerange TIMERANGE
Specify what timerange of data to use.
--data-format-ohlcv {json,jsongz,hdf5}
Storage format for downloaded candle (OHLCV) data.
(default: `json`).
--max-open-trades INT
Override the value of the `max_open_trades`
configuration setting.
--stake-amount STAKE_AMOUNT
Override the value of the `stake_amount` configuration
setting.
--fee FLOAT Specify fee ratio. Will be applied twice (on trade
entry and exit).
2021-04-17 08:48:24 +00:00
-p PAIRS [PAIRS ...], --pairs PAIRS [PAIRS ...]
Limit command to these pairs. Pairs are space-
separated.
--eps, --enable-position-stacking
Allow buying the same pair multiple times (position
stacking).
--dmmp, --disable-max-market-positions
Disable applying `max_open_trades` during backtest
(same as setting `max_open_trades` to a very high
number).
--enable-protections, --enableprotections
Enable protections for backtesting.Will slow
backtesting down by a considerable amount, but will
include configured protections
--dry-run-wallet DRY_RUN_WALLET, --starting-balance DRY_RUN_WALLET
2021-02-10 18:45:59 +00:00
Starting balance, used for backtesting / hyperopt and
dry-runs.
--timeframe-detail TIMEFRAME_DETAIL
Specify detail timeframe for backtesting (`1m`, `5m`,
`30m`, `1h`, `1d`).
--strategy-list STRATEGY_LIST [STRATEGY_LIST ...]
Provide a space-separated list of strategies to
backtest. Please note that ticker-interval needs to be
set either in config or via command line. When using
this together with `--export trades`, the strategy-
name is injected into the filename (so `backtest-
data.json` becomes `backtest-data-SampleStrategy.json`
--export {none,trades}
Export backtest results (default: trades).
--export-filename PATH
Save backtest results to the file with this filename.
Requires `--export` to be set as well. Example:
`--export-filename=user_data/backtest_results/backtest
_today.json`
--breakdown {day,week,month} [{day,week,month} ...]
Show backtesting breakdown per [day, week, month].
--cache {none,day,week,month}
Load a cached backtest result no older than specified
age (default: day).
Common arguments:
-v, --verbose Verbose mode (-vv for more, -vvv to get all messages).
--logfile FILE Log to the file specified. Special values are:
'syslog', 'journald'. See the documentation for more
details.
-V, --version show program's version number and exit
-c PATH, --config PATH
Specify configuration file (default:
`userdir/config.json` or `config.json` whichever
exists). Multiple --config options may be used. Can be
set to `-` to read config from stdin.
-d PATH, --datadir PATH
Path to directory with historical backtesting data.
--userdir PATH, --user-data-dir PATH
Path to userdata directory.
Strategy arguments:
-s NAME, --strategy NAME
Specify strategy class name which will be used by the
bot.
--strategy-path PATH Specify additional strategy lookup path.
```
## Test your strategy with Backtesting
2018-06-13 04:52:17 +00:00
Now you have good Buy and Sell strategies and some historic data, you want to test it against
2021-02-24 19:21:50 +00:00
real data. This is what we call [backtesting](https://en.wikipedia.org/wiki/Backtesting).
Backtesting will use the crypto-currencies (pairs) from your config file and load historical candle (OHLCV) data from `user_data/data/<exchange>` by default.
2020-06-02 08:06:26 +00:00
If no data is available for the exchange / pair / timeframe combination, backtesting will ask you to download them first using `freqtrade download-data`.
2019-09-24 05:05:30 +00:00
For details on downloading, please refer to the [Data Downloading](data-download.md) section in the documentation.
2019-09-21 08:09:14 +00:00
The result of backtesting will confirm if your bot has better odds of making a profit than a loss.
2021-02-24 19:21:50 +00:00
All profit calculations include fees, and freqtrade will use the exchange's default fees for the calculation.
2020-04-25 13:38:20 +00:00
!!! Warning "Using dynamic pairlists for backtesting"
Using dynamic pairlists is possible (not all of the handlers are allowed to be used in backtest mode), however it relies on the current market conditions - which will not reflect the historic status of the pairlist.
Also, when using pairlists other than StaticPairlist, reproducibility of backtesting-results cannot be guaranteed.
2021-02-27 09:45:22 +00:00
Please read the [pairlists documentation](plugins.md#pairlists) for more information.
2020-04-25 13:38:20 +00:00
To achieve reproducible results, best generate a pairlist via the [`test-pairlist`](utils.md#test-pairlist) command and use that as static pairlist.
!!! Note
By default, Freqtrade will export backtesting results to `user_data/backtest_results`.
The exported trades can be used for [further analysis](#further-backtest-result-analysis) or can be used by the [plotting sub-command](plotting.md#plot-price-and-indicators) (`freqtrade plot-dataframe`) in the scripts directory.
### Starting balance
2021-02-27 09:45:22 +00:00
Backtesting will require a starting balance, which can be provided as `--dry-run-wallet <balance>` or `--starting-balance <balance>` command line argument, or via `dry_run_wallet` configuration setting.
This amount must be higher than `stake_amount`, otherwise the bot will not be able to simulate any trade.
### Dynamic stake amount
Backtesting supports [dynamic stake amount](configuration.md#dynamic-stake-amount) by configuring `stake_amount` as `"unlimited"`, which will split the starting balance into `max_open_trades` pieces.
Profits from early trades will result in subsequent higher stake amounts, resulting in compounding of profits over the backtesting period.
2021-02-24 19:21:50 +00:00
### Example backtesting commands
2019-09-21 08:09:14 +00:00
2021-02-24 19:21:50 +00:00
With 5 min candle (OHLCV) data (per default)
2018-06-13 04:52:17 +00:00
```bash
2021-02-24 19:21:50 +00:00
freqtrade backtesting --strategy AwesomeStrategy
```
2021-02-24 19:21:50 +00:00
Where `--strategy AwesomeStrategy` / `-s AwesomeStrategy` refers to the class name of the strategy, which is within a python file in the `user_data/strategies` directory.
---
With 1 min candle (OHLCV) data
2018-06-13 04:52:17 +00:00
```bash
2021-02-24 19:21:50 +00:00
freqtrade backtesting --strategy AwesomeStrategy --timeframe 1m
```
2021-02-24 19:21:50 +00:00
---
2018-06-13 04:52:17 +00:00
2021-02-24 19:21:50 +00:00
Providing a custom starting balance of 1000 (in stake currency)
2019-08-20 05:05:17 +00:00
2018-01-07 09:15:26 +00:00
```bash
2021-02-24 19:21:50 +00:00
freqtrade backtesting --strategy AwesomeStrategy --dry-run-wallet 1000
2018-01-07 09:15:26 +00:00
```
2021-02-24 19:21:50 +00:00
---
Using a different on-disk historical candle (OHLCV) data source
Assume you downloaded the history data from the Bittrex exchange and kept it in the `user_data/data/bittrex-20180101` directory.
You can then use this data for backtesting as follows:
2018-06-13 04:52:17 +00:00
```bash
2021-02-24 19:21:50 +00:00
freqtrade backtesting --strategy AwesomeStrategy --datadir user_data/data/bittrex-20180101
```
2018-06-13 04:52:17 +00:00
2021-02-24 19:21:50 +00:00
---
2019-08-06 04:27:38 +00:00
2021-02-24 19:21:50 +00:00
Comparing multiple Strategies
2019-08-06 04:27:38 +00:00
```bash
2020-06-02 08:06:26 +00:00
freqtrade backtesting --strategy-list SampleStrategy1 AwesomeStrategy --timeframe 5m
2019-08-06 04:27:38 +00:00
```
2019-08-27 04:41:07 +00:00
Where `SampleStrategy1` and `AwesomeStrategy` refer to class names of strategies.
2021-02-24 19:21:50 +00:00
---
Prevent exporting trades to file
2018-06-13 04:52:17 +00:00
2018-01-11 14:45:39 +00:00
```bash
freqtrade backtesting --strategy backtesting --export none --config config.json
2018-01-11 14:45:39 +00:00
```
Only use this if you're sure you'll not want to plot or analyze your results further.
2018-07-12 19:37:54 +00:00
2021-02-24 19:21:50 +00:00
---
Exporting trades to file specifying a custom filename
2018-06-13 04:52:17 +00:00
```bash
2021-02-24 19:21:50 +00:00
freqtrade backtesting --strategy backtesting --export trades --export-filename=backtest_samplestrategy.json
```
Please also read about the [strategy startup period](strategy-customization.md#strategy-startup-period).
2021-02-24 19:21:50 +00:00
---
Supplying custom fee value
2019-10-05 13:33:44 +00:00
2019-10-07 05:02:43 +00:00
Sometimes your account has certain fee rebates (fee reductions starting with a certain account size or monthly volume), which are not visible to ccxt.
To account for this in backtesting, you can use the `--fee` command line option to supply this value to backtesting.
2020-01-03 10:20:08 +00:00
This fee must be a ratio, and will be applied twice (once for trade entry, and once for trade exit).
2019-10-05 13:33:44 +00:00
For example, if the buying and selling commission fee is 0.1% (i.e., 0.001 written as ratio), then you would run backtesting as the following:
2019-10-05 13:33:44 +00:00
```bash
freqtrade backtesting --fee 0.001
```
2020-01-03 10:20:08 +00:00
!!! Note
2020-01-03 19:11:58 +00:00
Only supply this option (or the corresponding configuration parameter) if you want to experiment with different fee values. By default, Backtesting fetches the default fee from the exchange pair/market info.
2019-10-05 13:33:44 +00:00
2021-02-24 19:21:50 +00:00
---
2021-02-24 19:21:50 +00:00
Running backtest with smaller test-set by using timerange
2018-01-10 23:14:36 +00:00
2021-02-24 19:21:50 +00:00
Use the `--timerange` argument to change how much of the test-set you want to use.
2019-09-26 09:00:26 +00:00
2021-02-24 19:21:50 +00:00
For example, running backtesting with the `--timerange=20190501-` option will use all available data starting with May 1st, 2019 from your input data.
2018-06-13 04:52:17 +00:00
2018-01-10 23:14:36 +00:00
```bash
2019-09-21 08:09:14 +00:00
freqtrade backtesting --timerange=20190501-
2018-01-10 23:14:36 +00:00
```
2021-02-24 19:21:50 +00:00
You can also specify particular date ranges.
The full timerange specification:
2018-06-13 04:52:17 +00:00
2021-02-24 19:21:50 +00:00
- Use data until 2018/01/31: `--timerange=-20180131`
- Use data since 2018/01/31: `--timerange=20180131-`
- Use data since 2018/01/31 till 2018/03/01 : `--timerange=20180131-20180301`
- Use data between POSIX / epoch timestamps 1527595200 1527618600: `--timerange=1527595200-1527618600`
2018-01-15 21:25:02 +00:00
## Understand the backtesting result
2018-06-13 04:52:17 +00:00
The most important in the backtesting is to understand the result.
A backtesting result will look like that:
2018-06-13 04:52:17 +00:00
```
2021-05-22 13:38:13 +00:00
========================================================= BACKTESTING REPORT ==========================================================
| Pair | Buys | Avg Profit % | Cum Profit % | Tot Profit BTC | Tot Profit % | Avg Duration | Wins Draws Loss Win% |
|:---------|-------:|---------------:|---------------:|-----------------:|---------------:|:-------------|-------------------------:|
| ADA/BTC | 35 | -0.11 | -3.88 | -0.00019428 | -1.94 | 4:35:00 | 14 0 21 40.0 |
| ARK/BTC | 11 | -0.41 | -4.52 | -0.00022647 | -2.26 | 2:03:00 | 3 0 8 27.3 |
| BTS/BTC | 32 | 0.31 | 9.78 | 0.00048938 | 4.89 | 5:05:00 | 18 0 14 56.2 |
| DASH/BTC | 13 | -0.08 | -1.07 | -0.00005343 | -0.53 | 4:39:00 | 6 0 7 46.2 |
| ENG/BTC | 18 | 1.36 | 24.54 | 0.00122807 | 12.27 | 2:50:00 | 8 0 10 44.4 |
| EOS/BTC | 36 | 0.08 | 3.06 | 0.00015304 | 1.53 | 3:34:00 | 16 0 20 44.4 |
| ETC/BTC | 26 | 0.37 | 9.51 | 0.00047576 | 4.75 | 6:14:00 | 11 0 15 42.3 |
| ETH/BTC | 33 | 0.30 | 9.96 | 0.00049856 | 4.98 | 7:31:00 | 16 0 17 48.5 |
| IOTA/BTC | 32 | 0.03 | 1.09 | 0.00005444 | 0.54 | 3:12:00 | 14 0 18 43.8 |
| LSK/BTC | 15 | 1.75 | 26.26 | 0.00131413 | 13.13 | 2:58:00 | 6 0 9 40.0 |
| LTC/BTC | 32 | -0.04 | -1.38 | -0.00006886 | -0.69 | 4:49:00 | 11 0 21 34.4 |
| NANO/BTC | 17 | 1.26 | 21.39 | 0.00107058 | 10.70 | 1:55:00 | 10 0 7 58.5 |
| NEO/BTC | 23 | 0.82 | 18.97 | 0.00094936 | 9.48 | 2:59:00 | 10 0 13 43.5 |
| REQ/BTC | 9 | 1.17 | 10.54 | 0.00052734 | 5.27 | 3:47:00 | 4 0 5 44.4 |
| XLM/BTC | 16 | 1.22 | 19.54 | 0.00097800 | 9.77 | 3:15:00 | 7 0 9 43.8 |
| XMR/BTC | 23 | -0.18 | -4.13 | -0.00020696 | -2.07 | 5:30:00 | 12 0 11 52.2 |
| XRP/BTC | 35 | 0.66 | 22.96 | 0.00114897 | 11.48 | 3:49:00 | 12 0 23 34.3 |
| ZEC/BTC | 22 | -0.46 | -10.18 | -0.00050971 | -5.09 | 2:22:00 | 7 0 15 31.8 |
| TOTAL | 429 | 0.36 | 152.41 | 0.00762792 | 76.20 | 4:12:00 | 186 0 243 43.4 |
========================================================= SELL REASON STATS ==========================================================
| Sell Reason | Sells | Wins | Draws | Losses |
|:-------------------|--------:|------:|-------:|--------:|
| trailing_stop_loss | 205 | 150 | 0 | 55 |
| stop_loss | 166 | 0 | 0 | 166 |
| sell_signal | 56 | 36 | 0 | 20 |
| force_sell | 2 | 0 | 0 | 2 |
2019-01-24 14:24:38 +00:00
====================================================== LEFT OPEN TRADES REPORT ======================================================
2021-05-22 13:38:13 +00:00
| Pair | Buys | Avg Profit % | Cum Profit % | Tot Profit BTC | Tot Profit % | Avg Duration | Win Draw Loss Win% |
|:---------|-------:|---------------:|---------------:|-----------------:|---------------:|:---------------|--------------------:|
| ADA/BTC | 1 | 0.89 | 0.89 | 0.00004434 | 0.44 | 6:00:00 | 1 0 0 100 |
| LTC/BTC | 1 | 0.68 | 0.68 | 0.00003421 | 0.34 | 2:00:00 | 1 0 0 100 |
| TOTAL | 2 | 0.78 | 1.57 | 0.00007855 | 0.78 | 4:00:00 | 2 0 0 100 |
2020-07-14 17:34:01 +00:00
=============== SUMMARY METRICS ===============
| Metric | Value |
|-----------------------+---------------------|
| Backtesting from | 2019-01-01 00:00:00 |
| Backtesting to | 2019-05-01 00:00:00 |
2020-11-24 05:57:11 +00:00
| Max open trades | 3 |
| | |
| Total/Daily Avg Trades| 429 / 3.575 |
2021-02-17 19:19:03 +00:00
| Starting balance | 0.01000000 BTC |
| Final balance | 0.01762792 BTC |
| Absolute profit | 0.00762792 BTC |
2021-02-17 19:19:03 +00:00
| Total profit % | 76.2% |
2020-07-14 17:34:01 +00:00
| Trades per day | 3.575 |
2021-02-27 09:45:22 +00:00
| Avg. stake amount | 0.001 BTC |
2021-02-14 12:08:49 +00:00
| Total trade volume | 0.429 BTC |
2020-11-28 16:45:56 +00:00
| | |
2020-11-28 16:52:29 +00:00
| Best Pair | LSK/BTC 26.26% |
| Worst Pair | ZEC/BTC -10.18% |
| Best Trade | LSK/BTC 4.25% |
| Worst Trade | ZEC/BTC -10.25% |
2021-03-05 18:21:09 +00:00
| Best day | 0.00076 BTC |
| Worst day | -0.00036 BTC |
| Days win/draw/lose | 12 / 82 / 25 |
2020-07-14 17:34:01 +00:00
| Avg. Duration Winners | 4:23:00 |
| Avg. Duration Loser | 6:55:00 |
2021-05-23 07:46:51 +00:00
| Rejected Buy signals | 3089 |
2022-02-07 17:49:30 +00:00
| Entry/Exit Timeouts | 0 / 0 |
2020-07-14 17:34:01 +00:00
| | |
2021-02-17 19:19:03 +00:00
| Min balance | 0.00945123 BTC |
| Max balance | 0.01846651 BTC |
| Drawdown (Account) | 13.33% |
2021-02-17 19:19:03 +00:00
| Drawdown | 0.0015 BTC |
| Drawdown high | 0.0013 BTC |
| Drawdown low | -0.0002 BTC |
2020-07-14 17:34:01 +00:00
| Drawdown Start | 2019-02-15 14:10:00 |
| Drawdown End | 2019-04-11 18:15:00 |
| Market change | -5.88% |
===============================================
2020-07-03 06:02:27 +00:00
```
2020-07-03 06:02:27 +00:00
### Backtesting report table
2019-01-24 14:24:38 +00:00
2020-07-03 06:02:27 +00:00
The 1st table contains all trades the bot made, including "left open trades".
The last line will give you the overall performance of your strategy,
here:
2018-06-13 04:52:17 +00:00
```
2021-05-22 13:38:13 +00:00
| TOTAL | 429 | 0.36 | 152.41 | 0.00762792 | 76.20 | 4:12:00 | 186 0 243 43.4 |
```
2019-09-21 08:09:14 +00:00
The bot has made `429` trades for an average duration of `4:12:00`, with a performance of `76.20%` (profit), that means it has
2019-01-24 14:24:38 +00:00
earned a total of `0.00762792 BTC` starting with a capital of 0.01 BTC.
2021-02-24 19:21:50 +00:00
The column `Avg Profit %` shows the average profit for all trades made while the column `Cum Profit %` sums up all the profits/losses.
The column `Tot Profit %` shows instead the total profit % in relation to the starting balance.
In the above results, we have a starting balance of 0.01 BTC and an absolute profit of 0.00762792 BTC - so the `Tot Profit %` will be `(0.00762792 / 0.01) * 100 ~= 76.2%`.
2018-12-30 16:14:56 +00:00
2019-09-21 08:09:14 +00:00
Your strategy performance is influenced by your buy strategy, your sell strategy, and also by the `minimal_roi` and `stop_loss` you have set.
For example, if your `minimal_roi` is only `"0": 0.01` you cannot expect the bot to make more profit than 1% (because it will sell every time a trade reaches 1%).
2018-06-13 04:52:17 +00:00
```json
"minimal_roi": {
"0": 0.01
},
```
On the other hand, if you set a too high `minimal_roi` like `"0": 0.55`
(55%), there is almost no chance that the bot will ever reach this profit.
Hence, keep in mind that your performance is an integral mix of all different elements of the strategy, your configuration, and the crypto-currency pairs you have set up.
2019-09-21 08:09:14 +00:00
2020-07-03 06:02:27 +00:00
### Sell reasons table
The 2nd table contains a recap of sell reasons.
2020-08-18 12:02:22 +00:00
This table can tell you which area needs some additional work (e.g. all or many of the `sell_signal` trades are losses, so you should work on improving the sell signal, or consider disabling it).
2020-07-03 06:02:27 +00:00
### Left open trades table
The 3rd table contains all trades the bot had to `forcesell` at the end of the backtesting period to present you the full picture.
2020-08-18 17:44:44 +00:00
This is necessary to simulate realistic behavior, since the backtest period has to end at some point, while realistically, you could leave the bot running forever.
These trades are also included in the first table, but are also shown separately in this table for clarity.
2020-07-03 06:02:27 +00:00
### Summary metrics
The last element of the backtest report is the summary metrics table.
It contains some useful key metrics about performance of your strategy on backtesting data.
2020-07-03 06:02:27 +00:00
```
2020-07-03 17:58:02 +00:00
=============== SUMMARY METRICS ===============
| Metric | Value |
|-----------------------+---------------------|
2020-07-14 17:34:01 +00:00
| Backtesting from | 2019-01-01 00:00:00 |
| Backtesting to | 2019-05-01 00:00:00 |
2020-11-24 05:57:11 +00:00
| Max open trades | 3 |
| | |
| Total/Daily Avg Trades| 429 / 3.575 |
2021-02-17 19:19:03 +00:00
| Starting balance | 0.01000000 BTC |
| Final balance | 0.01762792 BTC |
| Absolute profit | 0.00762792 BTC |
2021-02-17 19:19:03 +00:00
| Total profit % | 76.2% |
2021-02-27 09:45:22 +00:00
| Avg. stake amount | 0.001 BTC |
2021-02-14 12:08:49 +00:00
| Total trade volume | 0.429 BTC |
2020-11-28 16:45:56 +00:00
| | |
2020-11-28 16:52:29 +00:00
| Best Pair | LSK/BTC 26.26% |
| Worst Pair | ZEC/BTC -10.18% |
| Best Trade | LSK/BTC 4.25% |
| Worst Trade | ZEC/BTC -10.25% |
2021-03-05 18:21:09 +00:00
| Best day | 0.00076 BTC |
| Worst day | -0.00036 BTC |
| Days win/draw/lose | 12 / 82 / 25 |
2020-07-03 17:58:02 +00:00
| Avg. Duration Winners | 4:23:00 |
| Avg. Duration Loser | 6:55:00 |
2021-05-23 07:46:51 +00:00
| Rejected Buy signals | 3089 |
2022-02-07 17:49:30 +00:00
| Entry/Exit Timeouts | 0 / 0 |
2020-07-03 17:58:02 +00:00
| | |
2021-02-17 19:19:03 +00:00
| Min balance | 0.00945123 BTC |
| Max balance | 0.01846651 BTC |
| Drawdown (Account) | 13.33% |
2021-02-17 19:19:03 +00:00
| Drawdown | 0.0015 BTC |
| Drawdown high | 0.0013 BTC |
| Drawdown low | -0.0002 BTC |
2020-07-03 17:58:02 +00:00
| Drawdown Start | 2019-02-15 14:10:00 |
| Drawdown End | 2019-04-11 18:15:00 |
| Market change | -5.88% |
===============================================
2020-07-03 06:02:27 +00:00
```
2020-11-24 05:57:11 +00:00
- `Backtesting from` / `Backtesting to`: Backtesting range (usually defined with the `--timerange` option).
- `Max open trades`: Setting of `max_open_trades` (or `--max-open-trades`) - or number of pairs in the pairlist (whatever is lower).
- `Total/Daily Avg Trades`: Identical to the total trades of the backtest output table / Total trades divided by the backtesting duration in days (this will give you information about how many trades to expect from the strategy).
2021-02-17 19:19:03 +00:00
- `Starting balance`: Start balance - as given by dry-run-wallet (config or command line).
2021-02-27 09:45:22 +00:00
- `Final balance`: Final balance - starting balance + absolute profit.
- `Absolute profit`: Profit made in stake currency.
2021-02-17 19:19:03 +00:00
- `Total profit %`: Total profit. Aligned to the `TOTAL` row's `Tot Profit %` from the first table. Calculated as `(End capital Starting capital) / Starting capital`.
- `Avg. stake amount`: Average stake amount, either `stake_amount` or the average when using dynamic stake amount.
2021-02-14 12:08:49 +00:00
- `Total trade volume`: Volume generated on the exchange to reach the above profit.
2020-11-28 16:45:56 +00:00
- `Best Pair` / `Worst Pair`: Best and worst performing pair, and it's corresponding `Cum Profit %`.
2021-03-05 18:21:09 +00:00
- `Best Trade` / `Worst Trade`: Biggest single winning trade and biggest single losing trade.
2020-07-03 17:30:29 +00:00
- `Best day` / `Worst day`: Best and worst day based on daily profit.
- `Days win/draw/lose`: Winning / Losing days (draws are usually days without closed trade).
2020-07-03 17:58:02 +00:00
- `Avg. Duration Winners` / `Avg. Duration Loser`: Average durations for winning and losing trades.
2021-05-23 07:46:51 +00:00
- `Rejected Buy signals`: Buy signals that could not be acted upon due to max_open_trades being reached.
2022-02-07 17:49:30 +00:00
- `Entry/Exit Timeouts`: Entry/exit orders which did not fill (only applicable if custom pricing is used).
2021-02-17 19:19:03 +00:00
- `Min balance` / `Max balance`: Lowest and Highest Wallet balance during the backtest period.
- `Drawdown (Account)`: Maximum Account Drawdown experienced. Calculated as $(Absolute Drawdown) / (DrawdownHigh + startingBalance)$.
- `Drawdown`: Maximum, absolute drawdown experienced. Difference between Drawdown High and Subsequent Low point.
2021-02-17 19:19:03 +00:00
- `Drawdown high` / `Drawdown low`: Profit at the beginning and end of the largest drawdown period. A negative low value means initial capital lost.
2020-11-24 05:57:11 +00:00
- `Drawdown Start` / `Drawdown End`: Start and end datetime for this largest drawdown (can also be visualized via the `plot-dataframe` sub-command).
2020-07-03 06:02:27 +00:00
- `Market change`: Change of the market during the backtest period. Calculated as average of all pairs changes from the first to the last candle using the "close" column.
2020-07-03 17:58:02 +00:00
### Daily / Weekly / Monthly breakdown
You can get an overview over daily / weekly or monthly results by using the `--breakdown <>` switch.
To visualize daily and weekly breakdowns, you can use the following:
``` bash
freqtrade backtesting --strategy MyAwesomeStrategy --breakdown day month
```
``` output
======================== DAY BREAKDOWN =========================
| Day | Tot Profit USDT | Wins | Draws | Losses |
|------------+-------------------+--------+---------+----------|
| 03/07/2021 | 200.0 | 2 | 0 | 0 |
| 04/07/2021 | -50.31 | 0 | 0 | 2 |
| 05/07/2021 | 220.611 | 3 | 2 | 0 |
| 06/07/2021 | 150.974 | 3 | 0 | 2 |
| 07/07/2021 | -70.193 | 1 | 0 | 2 |
| 08/07/2021 | 212.413 | 2 | 0 | 3 |
```
The output will show a table containing the realized absolute Profit (in stake currency) for the given timeperiod, as well as wins, draws and losses that materialized (closed) on this day.
### Backtest result caching
To save time, by default backtest will reuse a cached result from within the last day when the backtested strategy and config match that of a previous backtest. To force a new backtest despite existing result for an identical run specify `--cache none` parameter.
2022-01-16 17:01:05 +00:00
!!! Warning
Caching is automatically disabled for open-ended timeranges (`--timerange 20210101-`), as freqtrade cannot ensure reliably that the underlying data didn't change. It can also use cached results where it shouldn't if the original backtest had missing data at the end, which was fixed by downloading more data.
In this instance, please use `--cache none` once to force a fresh backtest.
2022-01-16 17:01:05 +00:00
### Further backtest-result analysis
To further analyze your backtest results, you can [export the trades](#exporting-trades-to-file).
2021-11-02 19:26:38 +00:00
You can then load the trades to perform further analysis as shown in the [data analysis](data-analysis.md#backtesting) backtesting section.
## Assumptions made by backtesting
2019-09-21 08:09:14 +00:00
Since backtesting lacks some detailed information about what happens within a candle, it needs to take a few assumptions:
- Buys happen at open-price
- All orders are filled at the requested price (no slippage, no unfilled orders)
- Sell-signal sells happen at open-price of the consecutive candle
- Sell-signal is favored over Stoploss, because sell-signals are assumed to trigger on candle's open
2019-12-07 14:26:10 +00:00
- ROI
- sells are compared to high - but the ROI value is used (e.g. ROI = 2%, high=5% - so the sell will be at 2%)
- sells are never "below the candle", so a ROI of 2% may result in a sell at 2.4% if low was at 2.4% profit
- Forcesells caused by `<N>=-1` ROI entries use low as sell value, unless N falls on the candle open (e.g. `120: -1` for 1h candles)
2020-12-12 09:27:17 +00:00
- Stoploss sells happen exactly at stoploss price, even if low was lower, but the loss will be `2 * fees` higher than the stoploss price
- Stoploss is evaluated before ROI within one candle. So you can often see more trades with the `stoploss` sell reason comparing to the results obtained with the same strategy in the Dry Run/Live Trade modes
- Low happens before high for stoploss, protecting capital first
2019-09-21 08:09:14 +00:00
- Trailing stoploss
- Trailing Stoploss is only adjusted if it's below the candle's low (otherwise it would be triggered)
- On trade entry candles that trigger trailing stoploss, the "minimum offset" (`stop_positive_offset`) is assumed (instead of high) - and the stop is calculated from this point
2019-09-21 08:09:14 +00:00
- High happens first - adjusting stoploss
- Low uses the adjusted stoploss (so sells with large high-low difference are backtested correctly)
- ROI applies before trailing-stop, ensuring profits are "top-capped" at ROI if both ROI and trailing stop applies
2019-09-21 08:09:14 +00:00
- Sell-reason does not explain if a trade was positive or negative, just what triggered the sell (this can look odd if negative ROI values are used)
- Evaluation sequence (if multiple signals happen on the same candle)
- Sell-signal
- ROI (if not stoploss)
- Stoploss
2019-10-18 08:00:43 +00:00
Taking these assumptions, backtesting tries to mirror real trading as closely as possible. However, backtesting will **never** replace running a strategy in dry-run mode.
Also, keep in mind that past results don't guarantee future success.
In addition to the above assumptions, strategy authors should carefully read the [Common Mistakes](strategy-customization.md#common-mistakes-when-developing-strategies) section, to avoid using data in backtesting which is not available in real market conditions.
### Improved backtest accuracy
2019-03-07 20:11:14 +00:00
One big limitation of backtesting is it's inability to know how prices moved intra-candle (was high before close, or viceversa?).
So assuming you run backtesting with a 1h timeframe, there will be 4 prices for that candle (Open, High, Low, Close).
While backtesting does take some assumptions (read above) about this - this can never be perfect, and will always be biased in one way or the other.
To mitigate this, freqtrade can use a lower (faster) timeframe to simulate intra-candle movements.
To utilize this, you can append `--timeframe-detail 5m` to your regular backtesting command.
``` bash
freqtrade backtesting --strategy AwesomeStrategy --timeframe 1h --timeframe-detail 5m
```
This will load 1h data as well as 5m data for the timeframe. The strategy will be analyzed with the 1h timeframe - and for every "open trade candle" (candles where a trade is open) the 5m data will be used to simulate intra-candle movements.
All callback functions (`custom_sell()`, `custom_stoploss()`, ... ) will be running for each 5m candle once the trade is opened (so 12 times in the above example of 1h timeframe, and 5m detailed timeframe).
`--timeframe-detail` must be smaller than the original timeframe, otherwise backtesting will fail to start.
Obviously this will require more memory (5m data is bigger than 1h data), and will also impact runtime (depending on the amount of trades and trade durations).
Also, data must be available / downloaded already.
!!! Tip
You can use this function as the last part of strategy development, to ensure your strategy is not exploiting one of the [backtesting assumptions](#assumptions-made-by-backtesting). Strategies that perform similarly well with this mode have a good chance to perform well in dry/live modes too (although only forward-testing (dry-mode) can really confirm a strategy).
2019-03-07 20:11:14 +00:00
## Backtesting multiple strategies
2019-09-21 08:09:14 +00:00
To compare multiple strategies, a list of Strategies can be provided to backtesting.
2020-06-02 08:06:26 +00:00
This is limited to 1 timeframe value per run. However, data is only loaded once from disk so if you have multiple
2019-09-21 08:09:14 +00:00
strategies you'd like to compare, this will give a nice runtime boost.
All listed Strategies need to be in the same directory.
``` bash
2020-06-02 08:06:26 +00:00
freqtrade backtesting --timerange 20180401-20180410 --timeframe 5m --strategy-list Strategy001 Strategy002 --export trades
```
This will save the results to `user_data/backtest_results/backtest-result-<strategy>.json`, injecting the strategy-name into the target filename.
2018-07-29 11:13:03 +00:00
There will be an additional table comparing win/losses of the different strategies (identical to the "Total" row in the first table).
2019-09-21 08:09:14 +00:00
Detailed output for all strategies one after the other will be available, so make sure to scroll up to see the details per strategy.
2018-07-29 11:13:03 +00:00
```
=========================================================== STRATEGY SUMMARY =========================================================================
| Strategy | Buys | Avg Profit % | Cum Profit % | Tot Profit BTC | Tot Profit % | Avg Duration | Wins | Draws | Losses | Drawdown % |
|:------------|-------:|---------------:|---------------:|-----------------:|---------------:|:---------------|------:|-------:|-------:|-----------:|
| Strategy1 | 429 | 0.36 | 152.41 | 0.00762792 | 76.20 | 4:12:00 | 186 | 0 | 243 | 45.2 |
| Strategy2 | 1487 | -0.13 | -197.58 | -0.00988917 | -98.79 | 4:43:00 | 662 | 0 | 825 | 241.68 |
2018-07-29 11:13:03 +00:00
```
## Next step
2018-06-13 04:52:17 +00:00
2021-02-24 19:21:50 +00:00
Great, your strategy is profitable. What if the bot can give your the optimal parameters to use for your strategy?
2018-12-31 12:36:27 +00:00
Your next step is to learn [how to find optimal parameters with Hyperopt](hyperopt.md)