diff --git a/docs/backtesting.md b/docs/backtesting.md index 2feba7ada..12a6c346e 100644 --- a/docs/backtesting.md +++ b/docs/backtesting.md @@ -293,6 +293,7 @@ A backtesting result will look like that: |-----------------------------+---------------------| | Backtesting from | 2019-01-01 00:00:00 | | Backtesting to | 2019-05-01 00:00:00 | +| Trading Mode | Spot | | Max open trades | 3 | | | | | Total/Daily Avg Trades | 429 / 3.575 | @@ -398,6 +399,7 @@ It contains some useful key metrics about performance of your strategy on backte |-----------------------------+---------------------| | Backtesting from | 2019-01-01 00:00:00 | | Backtesting to | 2019-05-01 00:00:00 | +| Trading Mode | Spot | | Max open trades | 3 | | | | | Total/Daily Avg Trades | 429 / 3.575 | @@ -452,6 +454,7 @@ It contains some useful key metrics about performance of your strategy on backte - `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). +- `Trading Mode`: Spot or Futures trading. - `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). - `Starting balance`: Start balance - as given by dry-run-wallet (config or command line). - `Final balance`: Final balance - starting balance + absolute profit.