2018-02-09 07:35:38 +00:00
|
|
|
# pragma pylint: disable=missing-docstring, W0212, too-many-arguments
|
2017-11-14 21:15:24 +00:00
|
|
|
|
2018-02-09 07:35:38 +00:00
|
|
|
"""
|
|
|
|
This module contains the backtesting logic
|
|
|
|
"""
|
2018-03-25 19:37:14 +00:00
|
|
|
import logging
|
2020-10-07 18:59:05 +00:00
|
|
|
from collections import defaultdict
|
2018-07-27 21:01:52 +00:00
|
|
|
from copy import deepcopy
|
2021-01-13 06:47:03 +00:00
|
|
|
from datetime import datetime, timedelta, timezone
|
2021-01-23 12:02:48 +00:00
|
|
|
from typing import Any, Dict, List, Optional, Tuple
|
2018-03-17 21:44:47 +00:00
|
|
|
|
Fix exception when few pairs with no data do not result in aborting backtest.
Exception is triggered by backtesting 20210301-20210501 range with BAKE/USDT pair (binance). Pair data starts on 2021-04-30 12:00:00 and after adjusting for startup candles pair dataframe is empty.
Solution: Since there are other pairs with enough data - skip pairs with no data and issue a warning.
Exception:
```
Traceback (most recent call last):
File "/home/rk/src/freqtrade/freqtrade/main.py", line 37, in main
return_code = args['func'](args)
File "/home/rk/src/freqtrade/freqtrade/commands/optimize_commands.py", line 53, in start_backtesting
backtesting.start()
File "/home/rk/src/freqtrade/freqtrade/optimize/backtesting.py", line 502, in start
min_date, max_date = self.backtest_one_strategy(strat, data, timerange)
File "/home/rk/src/freqtrade/freqtrade/optimize/backtesting.py", line 474, in backtest_one_strategy
results = self.backtest(
File "/home/rk/src/freqtrade/freqtrade/optimize/backtesting.py", line 365, in backtest
data: Dict = self._get_ohlcv_as_lists(processed)
File "/home/rk/src/freqtrade/freqtrade/optimize/backtesting.py", line 199, in _get_ohlcv_as_lists
pair_data.loc[:, 'buy'] = 0 # cleanup from previous run
File "/home/rk/src/freqtrade/venv/lib/python3.9/site-packages/pandas/core/indexing.py", line 692, in __setitem__
iloc._setitem_with_indexer(indexer, value, self.name)
File "/home/rk/src/freqtrade/venv/lib/python3.9/site-packages/pandas/core/indexing.py", line 1587, in _setitem_with_indexer
raise ValueError(
ValueError: cannot set a frame with no defined index and a scalar
```
2021-05-13 06:47:28 +00:00
|
|
|
from pandas import DataFrame
|
2017-09-28 21:26:28 +00:00
|
|
|
|
2020-09-28 17:39:41 +00:00
|
|
|
from freqtrade.configuration import TimeRange, remove_credentials, validate_config_consistency
|
2020-06-26 05:46:59 +00:00
|
|
|
from freqtrade.constants import DATETIME_PRINT_FORMAT
|
2018-12-13 05:34:10 +00:00
|
|
|
from freqtrade.data import history
|
2021-01-24 08:56:27 +00:00
|
|
|
from freqtrade.data.btanalysis import trade_list_to_dataframe
|
2019-12-25 14:47:04 +00:00
|
|
|
from freqtrade.data.converter import trim_dataframe
|
2019-03-24 14:24:47 +00:00
|
|
|
from freqtrade.data.dataprovider import DataProvider
|
2021-02-10 19:37:55 +00:00
|
|
|
from freqtrade.exceptions import DependencyException, OperationalException
|
2019-10-20 11:56:01 +00:00
|
|
|
from freqtrade.exchange import timeframe_to_minutes, timeframe_to_seconds
|
2020-12-07 14:45:02 +00:00
|
|
|
from freqtrade.mixins import LoggingMixin
|
2020-09-28 17:39:41 +00:00
|
|
|
from freqtrade.optimize.optimize_reports import (generate_backtest_stats, show_backtest_results,
|
2020-06-26 05:46:59 +00:00
|
|
|
store_backtest_stats)
|
2021-02-22 05:54:33 +00:00
|
|
|
from freqtrade.persistence import LocalTrade, PairLocks, Trade
|
2020-12-23 16:00:02 +00:00
|
|
|
from freqtrade.plugins.pairlistmanager import PairListManager
|
2020-11-16 19:17:47 +00:00
|
|
|
from freqtrade.plugins.protectionmanager import ProtectionManager
|
2019-03-06 18:55:34 +00:00
|
|
|
from freqtrade.resolvers import ExchangeResolver, StrategyResolver
|
2020-02-02 04:00:40 +00:00
|
|
|
from freqtrade.strategy.interface import IStrategy, SellCheckTuple, SellType
|
2020-10-11 17:50:37 +00:00
|
|
|
from freqtrade.strategy.strategy_wrapper import strategy_safe_wrapper
|
2021-01-28 06:06:58 +00:00
|
|
|
from freqtrade.wallets import Wallets
|
2019-04-09 09:27:35 +00:00
|
|
|
|
2021-03-25 08:34:33 +00:00
|
|
|
|
2018-03-25 19:37:14 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2020-10-18 15:16:57 +00:00
|
|
|
# Indexes for backtest tuples
|
|
|
|
DATE_IDX = 0
|
|
|
|
BUY_IDX = 1
|
|
|
|
OPEN_IDX = 2
|
|
|
|
CLOSE_IDX = 3
|
|
|
|
SELL_IDX = 4
|
|
|
|
LOW_IDX = 5
|
|
|
|
HIGH_IDX = 6
|
|
|
|
|
2018-03-25 19:37:14 +00:00
|
|
|
|
2019-09-12 01:39:52 +00:00
|
|
|
class Backtesting:
|
2017-11-14 22:14:01 +00:00
|
|
|
"""
|
2018-02-09 07:35:38 +00:00
|
|
|
Backtesting class, this class contains all the logic to run a backtest
|
|
|
|
|
|
|
|
To run a backtest:
|
|
|
|
backtesting = Backtesting(config)
|
|
|
|
backtesting.start()
|
2017-11-14 22:14:01 +00:00
|
|
|
"""
|
2018-07-28 05:00:58 +00:00
|
|
|
|
2018-02-09 07:35:38 +00:00
|
|
|
def __init__(self, config: Dict[str, Any]) -> None:
|
2020-11-19 19:05:56 +00:00
|
|
|
|
|
|
|
LoggingMixin.show_output = False
|
2018-02-09 07:35:38 +00:00
|
|
|
self.config = config
|
2018-04-06 07:57:08 +00:00
|
|
|
|
|
|
|
# Reset keys for backtesting
|
2019-11-05 11:39:19 +00:00
|
|
|
remove_credentials(self.config)
|
2018-07-28 05:41:38 +00:00
|
|
|
self.strategylist: List[IStrategy] = []
|
2020-09-18 05:44:11 +00:00
|
|
|
self.all_results: Dict[str, Dict] = {}
|
|
|
|
|
2019-12-23 09:03:18 +00:00
|
|
|
self.exchange = ExchangeResolver.load_exchange(self.config['exchange']['name'], self.config)
|
2021-05-07 14:27:48 +00:00
|
|
|
self.dataprovider = DataProvider(self.config, None)
|
2019-03-24 14:24:47 +00:00
|
|
|
|
2018-07-28 05:41:38 +00:00
|
|
|
if self.config.get('strategy_list', None):
|
2018-07-28 05:55:59 +00:00
|
|
|
for strat in list(self.config['strategy_list']):
|
2018-07-28 05:41:38 +00:00
|
|
|
stratconf = deepcopy(self.config)
|
|
|
|
stratconf['strategy'] = strat
|
2019-12-23 09:23:48 +00:00
|
|
|
self.strategylist.append(StrategyResolver.load_strategy(stratconf))
|
2019-11-23 14:49:46 +00:00
|
|
|
validate_config_consistency(stratconf)
|
2018-07-28 05:41:38 +00:00
|
|
|
|
|
|
|
else:
|
2019-06-09 23:08:54 +00:00
|
|
|
# No strategy list specified, only one strategy
|
2019-12-23 09:23:48 +00:00
|
|
|
self.strategylist.append(StrategyResolver.load_strategy(self.config))
|
2019-11-23 14:49:46 +00:00
|
|
|
validate_config_consistency(self.config)
|
2019-06-09 23:08:54 +00:00
|
|
|
|
2020-06-01 18:49:40 +00:00
|
|
|
if "timeframe" not in self.config:
|
2020-03-08 10:35:31 +00:00
|
|
|
raise OperationalException("Timeframe (ticker interval) needs to be set in either "
|
2020-06-01 18:49:40 +00:00
|
|
|
"configuration or as cli argument `--timeframe 5m`")
|
|
|
|
self.timeframe = str(self.config.get('timeframe'))
|
2019-12-11 06:12:37 +00:00
|
|
|
self.timeframe_min = timeframe_to_minutes(self.timeframe)
|
2019-08-26 19:31:24 +00:00
|
|
|
|
2020-06-07 14:06:20 +00:00
|
|
|
self.pairlists = PairListManager(self.exchange, self.config)
|
|
|
|
if 'VolumePairList' in self.pairlists.name_list:
|
|
|
|
raise OperationalException("VolumePairList not allowed for backtesting.")
|
2020-12-16 18:24:47 +00:00
|
|
|
if 'PerformanceFilter' in self.pairlists.name_list:
|
|
|
|
raise OperationalException("PerformanceFilter not allowed for backtesting.")
|
2020-06-07 14:06:20 +00:00
|
|
|
|
|
|
|
if len(self.strategylist) > 1 and 'PrecisionFilter' in self.pairlists.name_list:
|
|
|
|
raise OperationalException(
|
|
|
|
"PrecisionFilter not allowed for backtesting multiple strategies."
|
|
|
|
)
|
|
|
|
|
2021-05-02 09:20:54 +00:00
|
|
|
self.dataprovider.add_pairlisthandler(self.pairlists)
|
2020-06-07 14:06:20 +00:00
|
|
|
self.pairlists.refresh_pairlist()
|
|
|
|
|
|
|
|
if len(self.pairlists.whitelist) == 0:
|
|
|
|
raise OperationalException("No pair in whitelist.")
|
|
|
|
|
2020-07-15 17:20:07 +00:00
|
|
|
if config.get('fee', None) is not None:
|
2020-06-07 14:06:20 +00:00
|
|
|
self.fee = config['fee']
|
|
|
|
else:
|
|
|
|
self.fee = self.exchange.get_fee(symbol=self.pairlists.whitelist[0])
|
|
|
|
|
2020-11-16 19:17:47 +00:00
|
|
|
Trade.use_db = False
|
2020-11-25 08:53:13 +00:00
|
|
|
Trade.reset_trades()
|
2020-11-16 19:17:47 +00:00
|
|
|
PairLocks.timeframe = self.config['timeframe']
|
|
|
|
PairLocks.use_db = False
|
2020-11-25 08:53:13 +00:00
|
|
|
PairLocks.reset_locks()
|
2020-11-16 19:17:47 +00:00
|
|
|
|
2021-02-27 09:31:21 +00:00
|
|
|
self.wallets = Wallets(self.config, self.exchange, log=False)
|
2021-01-28 06:06:58 +00:00
|
|
|
|
2019-10-20 11:56:01 +00:00
|
|
|
# Get maximum required startup period
|
|
|
|
self.required_startup = max([strat.startup_candle_count for strat in self.strategylist])
|
2018-02-09 07:35:38 +00:00
|
|
|
|
2020-11-25 08:53:13 +00:00
|
|
|
def __del__(self):
|
|
|
|
LoggingMixin.show_output = True
|
|
|
|
PairLocks.use_db = True
|
|
|
|
Trade.use_db = True
|
|
|
|
|
2021-02-26 18:48:06 +00:00
|
|
|
def _set_strategy(self, strategy: IStrategy):
|
2018-07-28 04:54:33 +00:00
|
|
|
"""
|
|
|
|
Load strategy into backtesting
|
|
|
|
"""
|
2020-10-18 15:16:57 +00:00
|
|
|
self.strategy: IStrategy = strategy
|
2021-05-03 06:47:58 +00:00
|
|
|
strategy.dp = self.dataprovider
|
2019-03-06 18:55:34 +00:00
|
|
|
# Set stoploss_on_exchange to false for backtesting,
|
|
|
|
# since a "perfect" stoploss-sell is assumed anyway
|
|
|
|
# And the regular "stoploss" function would not apply to that case
|
|
|
|
self.strategy.order_types['stoploss_on_exchange'] = False
|
2021-05-07 14:28:06 +00:00
|
|
|
if self.config.get('enable_protections', False):
|
|
|
|
conf = self.config
|
|
|
|
if hasattr(strategy, 'protections'):
|
|
|
|
conf = deepcopy(conf)
|
|
|
|
conf['protections'] = strategy.protections
|
|
|
|
self.protections = ProtectionManager(conf)
|
2018-07-28 04:54:33 +00:00
|
|
|
|
2020-03-15 14:04:48 +00:00
|
|
|
def load_bt_data(self) -> Tuple[Dict[str, DataFrame], TimeRange]:
|
2020-09-18 05:45:47 +00:00
|
|
|
"""
|
|
|
|
Loads backtest data and returns the data combined with the timerange
|
|
|
|
as tuple.
|
|
|
|
"""
|
2019-10-23 18:13:43 +00:00
|
|
|
timerange = TimeRange.parse_timerange(None if self.config.get(
|
|
|
|
'timerange') is None else str(self.config.get('timerange')))
|
|
|
|
|
|
|
|
data = history.load_data(
|
2019-12-23 18:32:31 +00:00
|
|
|
datadir=self.config['datadir'],
|
2020-04-25 13:37:13 +00:00
|
|
|
pairs=self.pairlists.whitelist,
|
2019-11-02 19:26:26 +00:00
|
|
|
timeframe=self.timeframe,
|
2019-10-23 18:13:43 +00:00
|
|
|
timerange=timerange,
|
|
|
|
startup_candles=self.required_startup,
|
|
|
|
fail_without_data=True,
|
2019-12-28 13:57:39 +00:00
|
|
|
data_format=self.config.get('dataformat_ohlcv', 'json'),
|
2019-10-23 18:13:43 +00:00
|
|
|
)
|
|
|
|
|
2019-12-17 22:06:03 +00:00
|
|
|
min_date, max_date = history.get_timerange(data)
|
2019-10-23 18:13:43 +00:00
|
|
|
|
2020-06-09 06:07:34 +00:00
|
|
|
logger.info(f'Loading data from {min_date.strftime(DATETIME_PRINT_FORMAT)} '
|
|
|
|
f'up to {max_date.strftime(DATETIME_PRINT_FORMAT)} '
|
2021-05-06 18:49:48 +00:00
|
|
|
f'({(max_date - min_date).days} days).')
|
2020-06-09 06:07:34 +00:00
|
|
|
|
2019-10-23 18:13:43 +00:00
|
|
|
# Adjust startts forward if not enough data is available
|
2019-11-02 19:34:39 +00:00
|
|
|
timerange.adjust_start_if_necessary(timeframe_to_seconds(self.timeframe),
|
2019-10-23 18:13:43 +00:00
|
|
|
self.required_startup, min_date)
|
|
|
|
|
|
|
|
return data, timerange
|
|
|
|
|
2020-11-27 16:38:15 +00:00
|
|
|
def prepare_backtest(self, enable_protections):
|
|
|
|
"""
|
|
|
|
Backtesting setup method - called once for every call to "backtest()".
|
|
|
|
"""
|
|
|
|
PairLocks.use_db = False
|
2021-01-14 05:53:40 +00:00
|
|
|
PairLocks.timeframe = self.config['timeframe']
|
2020-11-27 16:38:15 +00:00
|
|
|
Trade.use_db = False
|
2021-03-08 18:40:29 +00:00
|
|
|
PairLocks.reset_locks()
|
|
|
|
Trade.reset_trades()
|
2021-05-02 09:20:54 +00:00
|
|
|
self.dataprovider.clear_cache()
|
2020-11-27 16:38:15 +00:00
|
|
|
|
2020-10-18 15:16:57 +00:00
|
|
|
def _get_ohlcv_as_lists(self, processed: Dict[str, DataFrame]) -> Dict[str, Tuple]:
|
2019-03-23 14:00:07 +00:00
|
|
|
"""
|
2020-03-08 10:35:31 +00:00
|
|
|
Helper function to convert a processed dataframes into lists for performance reasons.
|
2019-03-23 14:00:07 +00:00
|
|
|
|
|
|
|
Used by backtest() - so keep this optimized for performance.
|
|
|
|
"""
|
2020-10-18 15:16:57 +00:00
|
|
|
# Every change to this headers list must evaluate further usages of the resulting tuple
|
|
|
|
# and eventually change the constants for indexes at the top
|
2019-03-23 14:00:07 +00:00
|
|
|
headers = ['date', 'buy', 'open', 'close', 'sell', 'low', 'high']
|
2020-03-08 10:35:31 +00:00
|
|
|
data: Dict = {}
|
|
|
|
# Create dict with data
|
2019-03-23 14:00:07 +00:00
|
|
|
for pair, pair_data in processed.items():
|
2021-05-20 04:49:25 +00:00
|
|
|
if not pair_data.empty:
|
2021-05-20 04:56:11 +00:00
|
|
|
pair_data.loc[:, 'buy'] = 0 # cleanup if buy_signal is exist
|
|
|
|
pair_data.loc[:, 'sell'] = 0 # cleanup if sell_signal is exist
|
2019-03-23 14:00:07 +00:00
|
|
|
|
2020-03-13 00:54:56 +00:00
|
|
|
df_analyzed = self.strategy.advise_sell(
|
2019-09-18 19:57:17 +00:00
|
|
|
self.strategy.advise_buy(pair_data, {'pair': pair}), {'pair': pair})[headers].copy()
|
2019-03-23 14:00:07 +00:00
|
|
|
|
2020-03-08 10:35:31 +00:00
|
|
|
# To avoid using data from future, we use buy/sell signals shifted
|
|
|
|
# from the previous candle
|
2020-01-25 10:42:31 +00:00
|
|
|
df_analyzed.loc[:, 'buy'] = df_analyzed.loc[:, 'buy'].shift(1)
|
|
|
|
df_analyzed.loc[:, 'sell'] = df_analyzed.loc[:, 'sell'].shift(1)
|
2019-03-23 14:00:07 +00:00
|
|
|
|
2020-03-13 00:54:56 +00:00
|
|
|
df_analyzed.drop(df_analyzed.head(1).index, inplace=True)
|
2019-03-23 14:00:07 +00:00
|
|
|
|
|
|
|
# Convert from Pandas to list for performance reasons
|
|
|
|
# (Looping Pandas is slow.)
|
2021-03-07 10:28:54 +00:00
|
|
|
data[pair] = df_analyzed.values.tolist()
|
2020-03-08 10:35:31 +00:00
|
|
|
return data
|
2019-03-23 14:00:07 +00:00
|
|
|
|
2021-02-20 19:22:00 +00:00
|
|
|
def _get_close_rate(self, sell_row: Tuple, trade: LocalTrade, sell: SellCheckTuple,
|
2020-02-02 04:00:40 +00:00
|
|
|
trade_dur: int) -> float:
|
2019-12-07 14:28:56 +00:00
|
|
|
"""
|
|
|
|
Get close rate for backtesting result
|
|
|
|
"""
|
2019-12-07 13:30:14 +00:00
|
|
|
# Special handling if high or low hit STOP_LOSS or ROI
|
|
|
|
if sell.sell_type in (SellType.STOP_LOSS, SellType.TRAILING_STOP_LOSS):
|
2021-05-15 06:38:51 +00:00
|
|
|
if trade.stop_loss > sell_row[HIGH_IDX]:
|
|
|
|
# our stoploss was already higher than candle high,
|
|
|
|
# possibly due to a cancelled trade exit.
|
|
|
|
# sell at open price.
|
|
|
|
return sell_row[OPEN_IDX]
|
|
|
|
|
2019-12-07 13:30:14 +00:00
|
|
|
# Set close_rate to stoploss
|
2019-12-07 14:28:56 +00:00
|
|
|
return trade.stop_loss
|
2019-12-07 13:30:14 +00:00
|
|
|
elif sell.sell_type == (SellType.ROI):
|
2019-12-07 14:18:12 +00:00
|
|
|
roi_entry, roi = self.strategy.min_roi_reached_entry(trade_dur)
|
2020-10-18 15:16:57 +00:00
|
|
|
if roi is not None and roi_entry is not None:
|
2019-12-14 22:10:09 +00:00
|
|
|
if roi == -1 and roi_entry % self.timeframe_min == 0:
|
2019-12-09 15:52:12 +00:00
|
|
|
# When forceselling with ROI=-1, the roi time will always be equal to trade_dur.
|
|
|
|
# If that entry is a multiple of the timeframe (so on candle open)
|
2019-12-07 14:28:56 +00:00
|
|
|
# - we'll use open instead of close
|
2020-10-18 15:16:57 +00:00
|
|
|
return sell_row[OPEN_IDX]
|
2019-12-07 14:28:56 +00:00
|
|
|
|
2019-12-07 13:30:14 +00:00
|
|
|
# - (Expected abs profit + open_rate + open_fee) / (fee_close -1)
|
2019-12-09 15:52:12 +00:00
|
|
|
close_rate = - (trade.open_rate * roi + trade.open_rate *
|
|
|
|
(1 + trade.fee_open)) / (trade.fee_close - 1)
|
|
|
|
|
|
|
|
if (trade_dur > 0 and trade_dur == roi_entry
|
2019-12-14 22:10:09 +00:00
|
|
|
and roi_entry % self.timeframe_min == 0
|
2020-10-18 15:16:57 +00:00
|
|
|
and sell_row[OPEN_IDX] > close_rate):
|
2019-12-09 15:52:12 +00:00
|
|
|
# new ROI entry came into effect.
|
|
|
|
# use Open rate if open_rate > calculated sell rate
|
2020-10-18 15:16:57 +00:00
|
|
|
return sell_row[OPEN_IDX]
|
2019-12-07 13:30:14 +00:00
|
|
|
|
2019-12-09 15:52:12 +00:00
|
|
|
# Use the maximum between close_rate and low as we
|
2019-12-07 13:30:14 +00:00
|
|
|
# cannot sell outside of a candle.
|
2019-12-07 14:18:12 +00:00
|
|
|
# Applies when a new ROI setting comes in place and the whole candle is above that.
|
2021-04-20 18:29:53 +00:00
|
|
|
return min(max(close_rate, sell_row[LOW_IDX]), sell_row[HIGH_IDX])
|
2019-12-07 14:18:12 +00:00
|
|
|
|
2019-12-07 13:30:14 +00:00
|
|
|
else:
|
|
|
|
# This should not be reached...
|
2020-10-18 15:16:57 +00:00
|
|
|
return sell_row[OPEN_IDX]
|
2019-12-07 13:30:14 +00:00
|
|
|
else:
|
2020-10-18 15:16:57 +00:00
|
|
|
return sell_row[OPEN_IDX]
|
2019-12-07 13:30:14 +00:00
|
|
|
|
2021-05-02 09:17:59 +00:00
|
|
|
def _get_sell_trade_entry(self, trade: LocalTrade, sell_row: Tuple) -> Optional[LocalTrade]:
|
2020-10-07 18:59:05 +00:00
|
|
|
|
2021-05-02 09:17:59 +00:00
|
|
|
sell = self.strategy.should_sell(trade, sell_row[OPEN_IDX], # type: ignore
|
2021-04-28 18:36:06 +00:00
|
|
|
sell_row[DATE_IDX].to_pydatetime(), sell_row[BUY_IDX],
|
|
|
|
sell_row[SELL_IDX],
|
2020-10-18 15:16:57 +00:00
|
|
|
low=sell_row[LOW_IDX], high=sell_row[HIGH_IDX])
|
2020-10-07 18:59:05 +00:00
|
|
|
|
2021-03-23 08:09:41 +00:00
|
|
|
if sell.sell_flag:
|
2021-04-26 17:54:47 +00:00
|
|
|
trade.close_date = sell_row[DATE_IDX].to_pydatetime()
|
2021-04-25 06:48:24 +00:00
|
|
|
trade.sell_reason = sell.sell_reason
|
2021-02-06 09:30:50 +00:00
|
|
|
trade_dur = int((trade.close_date_utc - trade.open_date_utc).total_seconds() // 60)
|
|
|
|
closerate = self._get_close_rate(sell_row, trade, sell, trade_dur)
|
2021-03-25 08:25:25 +00:00
|
|
|
|
|
|
|
# Confirm trade exit:
|
|
|
|
time_in_force = self.strategy.order_time_in_force['sell']
|
|
|
|
if not strategy_safe_wrapper(self.strategy.confirm_trade_exit, default_retval=True)(
|
|
|
|
pair=trade.pair, trade=trade, order_type='limit', amount=trade.amount,
|
|
|
|
rate=closerate,
|
|
|
|
time_in_force=time_in_force,
|
2021-05-02 09:20:54 +00:00
|
|
|
sell_reason=sell.sell_reason,
|
|
|
|
current_time=sell_row[DATE_IDX].to_pydatetime()):
|
2021-03-25 08:25:25 +00:00
|
|
|
return None
|
|
|
|
|
2020-11-16 19:21:32 +00:00
|
|
|
trade.close(closerate, show_msg=False)
|
2021-01-23 11:50:20 +00:00
|
|
|
return trade
|
2020-11-16 19:17:47 +00:00
|
|
|
|
2020-10-08 18:10:00 +00:00
|
|
|
return None
|
|
|
|
|
2021-04-21 18:01:10 +00:00
|
|
|
def _enter_trade(self, pair: str, row: List) -> Optional[LocalTrade]:
|
2021-02-10 19:37:55 +00:00
|
|
|
try:
|
2021-04-21 18:01:10 +00:00
|
|
|
stake_amount = self.wallets.get_trade_stake_amount(pair, None)
|
2021-02-10 19:37:55 +00:00
|
|
|
except DependencyException:
|
2021-02-22 05:54:33 +00:00
|
|
|
return None
|
2021-02-20 06:20:51 +00:00
|
|
|
min_stake_amount = self.exchange.get_min_pair_stake_amount(pair, row[OPEN_IDX], -0.05)
|
2021-03-23 08:09:41 +00:00
|
|
|
|
|
|
|
order_type = self.strategy.order_types['buy']
|
|
|
|
time_in_force = self.strategy.order_time_in_force['sell']
|
2021-03-25 08:25:25 +00:00
|
|
|
# Confirm trade entry:
|
2021-03-23 08:09:41 +00:00
|
|
|
if not strategy_safe_wrapper(self.strategy.confirm_trade_entry, default_retval=True)(
|
|
|
|
pair=pair, order_type=order_type, amount=stake_amount, rate=row[OPEN_IDX],
|
2021-05-02 09:20:54 +00:00
|
|
|
time_in_force=time_in_force, current_time=row[DATE_IDX].to_pydatetime()):
|
2021-03-23 08:09:41 +00:00
|
|
|
return None
|
|
|
|
|
2021-02-20 19:21:30 +00:00
|
|
|
if stake_amount and (not min_stake_amount or stake_amount > min_stake_amount):
|
2021-02-10 19:37:55 +00:00
|
|
|
# Enter trade
|
2021-02-20 18:29:04 +00:00
|
|
|
trade = LocalTrade(
|
2021-02-10 19:37:55 +00:00
|
|
|
pair=pair,
|
|
|
|
open_rate=row[OPEN_IDX],
|
2021-04-26 17:54:47 +00:00
|
|
|
open_date=row[DATE_IDX].to_pydatetime(),
|
2021-02-10 19:37:55 +00:00
|
|
|
stake_amount=stake_amount,
|
|
|
|
amount=round(stake_amount / row[OPEN_IDX], 8),
|
|
|
|
fee_open=self.fee,
|
|
|
|
fee_close=self.fee,
|
|
|
|
is_open=True,
|
|
|
|
exchange='backtesting',
|
|
|
|
)
|
|
|
|
return trade
|
|
|
|
return None
|
|
|
|
|
2021-02-20 18:29:04 +00:00
|
|
|
def handle_left_open(self, open_trades: Dict[str, List[LocalTrade]],
|
|
|
|
data: Dict[str, List[Tuple]]) -> List[LocalTrade]:
|
2020-10-08 18:10:00 +00:00
|
|
|
"""
|
|
|
|
Handling of left open trades at the end of backtesting
|
|
|
|
"""
|
|
|
|
trades = []
|
|
|
|
for pair in open_trades.keys():
|
|
|
|
if len(open_trades[pair]) > 0:
|
|
|
|
for trade in open_trades[pair]:
|
|
|
|
sell_row = data[pair][-1]
|
2020-11-16 19:17:47 +00:00
|
|
|
|
2021-04-26 17:54:47 +00:00
|
|
|
trade.close_date = sell_row[DATE_IDX].to_pydatetime()
|
2021-02-06 09:30:50 +00:00
|
|
|
trade.sell_reason = SellType.FORCE_SELL.value
|
2021-01-23 11:50:20 +00:00
|
|
|
trade.close(sell_row[OPEN_IDX], show_msg=False)
|
2021-03-14 08:48:40 +00:00
|
|
|
LocalTrade.close_bt_trade(trade)
|
2021-01-28 06:06:58 +00:00
|
|
|
# Deepcopy object to have wallets update correctly
|
|
|
|
trade1 = deepcopy(trade)
|
|
|
|
trade1.is_open = True
|
|
|
|
trades.append(trade1)
|
2020-10-08 18:10:00 +00:00
|
|
|
return trades
|
2018-02-09 07:35:38 +00:00
|
|
|
|
2021-02-10 19:37:55 +00:00
|
|
|
def backtest(self, processed: Dict,
|
2020-10-18 14:18:52 +00:00
|
|
|
start_date: datetime, end_date: datetime,
|
2020-11-23 19:29:29 +00:00
|
|
|
max_open_trades: int = 0, position_stacking: bool = False,
|
2021-04-30 05:31:57 +00:00
|
|
|
enable_protections: bool = False) -> Dict[str, Any]:
|
2018-02-09 07:35:38 +00:00
|
|
|
"""
|
2019-12-13 23:12:16 +00:00
|
|
|
Implement backtesting functionality
|
2018-02-09 07:35:38 +00:00
|
|
|
|
|
|
|
NOTE: This method is used by Hyperopt at each iteration. Please keep it optimized.
|
|
|
|
Of course try to not have ugly code. By some accessor are sometime slower than functions.
|
2019-12-13 23:12:16 +00:00
|
|
|
Avoid extensive logging in this method and functions it calls.
|
|
|
|
|
|
|
|
:param processed: a processed dictionary with format {pair, data}
|
|
|
|
:param start_date: backtesting timerange start datetime
|
|
|
|
:param end_date: backtesting timerange end datetime
|
|
|
|
:param max_open_trades: maximum number of concurrent trades, <= 0 means unlimited
|
|
|
|
:param position_stacking: do we allow position stacking?
|
2020-11-23 19:29:29 +00:00
|
|
|
:param enable_protections: Should protections be enabled?
|
2019-12-13 23:12:16 +00:00
|
|
|
:return: DataFrame with trades (results of backtesting)
|
2018-02-09 07:35:38 +00:00
|
|
|
"""
|
2021-02-20 19:22:00 +00:00
|
|
|
trades: List[LocalTrade] = []
|
2020-11-27 16:38:15 +00:00
|
|
|
self.prepare_backtest(enable_protections)
|
2018-06-07 07:21:07 +00:00
|
|
|
|
2021-05-02 09:20:54 +00:00
|
|
|
# Update dataprovider cache
|
|
|
|
for pair, dataframe in processed.items():
|
|
|
|
self.dataprovider._set_cached_df(pair, self.timeframe, dataframe)
|
|
|
|
|
2020-03-08 10:35:31 +00:00
|
|
|
# Use dict of lists with data for performance
|
|
|
|
# (looping lists is a lot faster than pandas DataFrames)
|
|
|
|
data: Dict = self._get_ohlcv_as_lists(processed)
|
2018-10-15 20:02:23 +00:00
|
|
|
|
2019-04-04 18:23:10 +00:00
|
|
|
# Indexes per pair, so some pairs are allowed to have a missing start.
|
2021-04-24 17:15:09 +00:00
|
|
|
indexes: Dict = defaultdict(int)
|
2019-12-11 06:12:37 +00:00
|
|
|
tmp = start_date + timedelta(minutes=self.timeframe_min)
|
2019-03-20 17:38:10 +00:00
|
|
|
|
2021-02-20 19:22:00 +00:00
|
|
|
open_trades: Dict[str, List[LocalTrade]] = defaultdict(list)
|
2020-10-07 18:59:05 +00:00
|
|
|
open_trade_count = 0
|
|
|
|
|
2019-04-04 18:23:10 +00:00
|
|
|
# Loop timerange and get candle for each pair at that point in time
|
2020-10-07 18:59:05 +00:00
|
|
|
while tmp <= end_date:
|
|
|
|
open_trade_count_start = open_trade_count
|
2019-03-20 17:38:10 +00:00
|
|
|
|
2020-03-08 10:35:31 +00:00
|
|
|
for i, pair in enumerate(data):
|
2021-05-08 13:06:19 +00:00
|
|
|
row_index = indexes[pair]
|
2018-10-15 20:02:23 +00:00
|
|
|
try:
|
2021-05-08 13:06:19 +00:00
|
|
|
row = data[pair][row_index]
|
2018-10-15 20:02:23 +00:00
|
|
|
except IndexError:
|
2019-04-04 17:44:03 +00:00
|
|
|
# missing Data for one pair at the end.
|
2019-06-15 11:45:50 +00:00
|
|
|
# Warnings for this are shown during data loading
|
2018-10-15 20:02:23 +00:00
|
|
|
continue
|
2018-03-04 00:42:37 +00:00
|
|
|
|
2019-04-04 17:44:03 +00:00
|
|
|
# Waits until the time-counter reaches the start of the data for this pair.
|
2020-10-18 15:16:57 +00:00
|
|
|
if row[DATE_IDX] > tmp:
|
2019-03-20 17:38:10 +00:00
|
|
|
continue
|
2021-05-08 13:06:19 +00:00
|
|
|
|
|
|
|
row_index += 1
|
2021-05-09 07:56:36 +00:00
|
|
|
self.dataprovider._set_dataframe_max_index(row_index)
|
2021-05-08 13:06:19 +00:00
|
|
|
indexes[pair] = row_index
|
2019-03-20 17:38:10 +00:00
|
|
|
|
2020-10-07 18:59:05 +00:00
|
|
|
# without positionstacking, we can only have one open trade per pair.
|
|
|
|
# max_open_trades must be respected
|
|
|
|
# don't open on the last row
|
|
|
|
if ((position_stacking or len(open_trades[pair]) == 0)
|
2020-11-01 09:51:07 +00:00
|
|
|
and (max_open_trades <= 0 or open_trade_count_start < max_open_trades)
|
2020-10-07 18:59:05 +00:00
|
|
|
and tmp != end_date
|
2020-11-16 19:17:47 +00:00
|
|
|
and row[BUY_IDX] == 1 and row[SELL_IDX] != 1
|
|
|
|
and not PairLocks.is_pair_locked(pair, row[DATE_IDX])):
|
2021-04-21 18:01:10 +00:00
|
|
|
trade = self._enter_trade(pair, row)
|
2021-02-10 19:37:55 +00:00
|
|
|
if trade:
|
|
|
|
# TODO: hacky workaround to avoid opening > max_open_trades
|
|
|
|
# This emulates previous behaviour - not sure if this is correct
|
|
|
|
# Prevents buying if the trade-slot was freed in this candle
|
|
|
|
open_trade_count_start += 1
|
|
|
|
open_trade_count += 1
|
2021-02-16 06:56:35 +00:00
|
|
|
# logger.debug(f"{pair} - Emulate creation of new trade: {trade}.")
|
2021-02-10 19:37:55 +00:00
|
|
|
open_trades[pair].append(trade)
|
2021-03-13 09:16:32 +00:00
|
|
|
LocalTrade.add_bt_trade(trade)
|
2020-10-07 18:59:05 +00:00
|
|
|
|
|
|
|
for trade in open_trades[pair]:
|
|
|
|
# also check the buying candle for sell conditions.
|
2021-05-02 09:17:59 +00:00
|
|
|
trade_entry = self._get_sell_trade_entry(trade, row)
|
2020-10-07 18:59:05 +00:00
|
|
|
# Sell occured
|
|
|
|
if trade_entry:
|
2020-10-18 14:38:16 +00:00
|
|
|
# logger.debug(f"{pair} - Backtesting sell {trade}")
|
2020-10-07 18:59:05 +00:00
|
|
|
open_trade_count -= 1
|
|
|
|
open_trades[pair].remove(trade)
|
2021-03-13 09:16:32 +00:00
|
|
|
|
|
|
|
LocalTrade.close_bt_trade(trade)
|
2020-10-07 18:59:05 +00:00
|
|
|
trades.append(trade_entry)
|
2020-11-23 19:29:29 +00:00
|
|
|
if enable_protections:
|
|
|
|
self.protections.stop_per_pair(pair, row[DATE_IDX])
|
2020-11-27 16:38:15 +00:00
|
|
|
self.protections.global_stop(tmp)
|
2018-03-04 00:42:37 +00:00
|
|
|
|
2020-10-07 18:59:05 +00:00
|
|
|
# Move time one configured time_interval ahead.
|
|
|
|
tmp += timedelta(minutes=self.timeframe_min)
|
2019-04-04 17:44:03 +00:00
|
|
|
|
2020-10-08 18:10:00 +00:00
|
|
|
trades += self.handle_left_open(open_trades, data=data)
|
2021-02-17 19:07:27 +00:00
|
|
|
self.wallets.update()
|
2018-06-09 19:44:20 +00:00
|
|
|
|
2021-04-30 05:31:57 +00:00
|
|
|
results = trade_list_to_dataframe(trades)
|
|
|
|
return {
|
|
|
|
'results': results,
|
|
|
|
'config': self.strategy.config,
|
|
|
|
'locks': PairLocks.get_all_locks(),
|
|
|
|
'final_balance': self.wallets.get_total(self.strategy.config['stake_currency']),
|
|
|
|
}
|
2018-02-09 07:35:38 +00:00
|
|
|
|
2020-09-18 05:44:11 +00:00
|
|
|
def backtest_one_strategy(self, strat: IStrategy, data: Dict[str, Any], timerange: TimeRange):
|
|
|
|
logger.info("Running backtesting for Strategy %s", strat.get_strategy_name())
|
2021-01-13 06:47:03 +00:00
|
|
|
backtest_start_time = datetime.now(timezone.utc)
|
2020-09-18 05:44:11 +00:00
|
|
|
self._set_strategy(strat)
|
|
|
|
|
2020-10-11 17:50:37 +00:00
|
|
|
strategy_safe_wrapper(self.strategy.bot_loop_start, supress_error=True)()
|
|
|
|
|
2020-09-18 05:44:11 +00:00
|
|
|
# Use max_open_trades in backtesting, except --disable-max-market-positions is set
|
|
|
|
if self.config.get('use_max_market_positions', True):
|
|
|
|
# Must come from strategy config, as the strategy may modify this setting.
|
|
|
|
max_open_trades = self.strategy.config['max_open_trades']
|
|
|
|
else:
|
|
|
|
logger.info(
|
|
|
|
'Ignoring max_open_trades (--disable-max-market-positions was used) ...')
|
|
|
|
max_open_trades = 0
|
|
|
|
|
|
|
|
# need to reprocess data every time to populate signals
|
|
|
|
preprocessed = self.strategy.ohlcvdata_to_dataframe(data)
|
|
|
|
|
|
|
|
# Trim startup period from analyzed dataframe
|
Fix exception when few pairs with no data do not result in aborting backtest.
Exception is triggered by backtesting 20210301-20210501 range with BAKE/USDT pair (binance). Pair data starts on 2021-04-30 12:00:00 and after adjusting for startup candles pair dataframe is empty.
Solution: Since there are other pairs with enough data - skip pairs with no data and issue a warning.
Exception:
```
Traceback (most recent call last):
File "/home/rk/src/freqtrade/freqtrade/main.py", line 37, in main
return_code = args['func'](args)
File "/home/rk/src/freqtrade/freqtrade/commands/optimize_commands.py", line 53, in start_backtesting
backtesting.start()
File "/home/rk/src/freqtrade/freqtrade/optimize/backtesting.py", line 502, in start
min_date, max_date = self.backtest_one_strategy(strat, data, timerange)
File "/home/rk/src/freqtrade/freqtrade/optimize/backtesting.py", line 474, in backtest_one_strategy
results = self.backtest(
File "/home/rk/src/freqtrade/freqtrade/optimize/backtesting.py", line 365, in backtest
data: Dict = self._get_ohlcv_as_lists(processed)
File "/home/rk/src/freqtrade/freqtrade/optimize/backtesting.py", line 199, in _get_ohlcv_as_lists
pair_data.loc[:, 'buy'] = 0 # cleanup from previous run
File "/home/rk/src/freqtrade/venv/lib/python3.9/site-packages/pandas/core/indexing.py", line 692, in __setitem__
iloc._setitem_with_indexer(indexer, value, self.name)
File "/home/rk/src/freqtrade/venv/lib/python3.9/site-packages/pandas/core/indexing.py", line 1587, in _setitem_with_indexer
raise ValueError(
ValueError: cannot set a frame with no defined index and a scalar
```
2021-05-13 06:47:28 +00:00
|
|
|
for pair in list(preprocessed):
|
|
|
|
df = preprocessed[pair]
|
|
|
|
df = trim_dataframe(df, timerange, startup_candles=self.required_startup)
|
|
|
|
if len(df) > 0:
|
|
|
|
preprocessed[pair] = df
|
|
|
|
else:
|
|
|
|
logger.warning(f'{pair} has no data left after adjusting for startup candles, '
|
|
|
|
f'skipping.')
|
|
|
|
del preprocessed[pair]
|
|
|
|
|
|
|
|
if not preprocessed:
|
2021-05-06 18:49:48 +00:00
|
|
|
raise OperationalException(
|
Fix exception when few pairs with no data do not result in aborting backtest.
Exception is triggered by backtesting 20210301-20210501 range with BAKE/USDT pair (binance). Pair data starts on 2021-04-30 12:00:00 and after adjusting for startup candles pair dataframe is empty.
Solution: Since there are other pairs with enough data - skip pairs with no data and issue a warning.
Exception:
```
Traceback (most recent call last):
File "/home/rk/src/freqtrade/freqtrade/main.py", line 37, in main
return_code = args['func'](args)
File "/home/rk/src/freqtrade/freqtrade/commands/optimize_commands.py", line 53, in start_backtesting
backtesting.start()
File "/home/rk/src/freqtrade/freqtrade/optimize/backtesting.py", line 502, in start
min_date, max_date = self.backtest_one_strategy(strat, data, timerange)
File "/home/rk/src/freqtrade/freqtrade/optimize/backtesting.py", line 474, in backtest_one_strategy
results = self.backtest(
File "/home/rk/src/freqtrade/freqtrade/optimize/backtesting.py", line 365, in backtest
data: Dict = self._get_ohlcv_as_lists(processed)
File "/home/rk/src/freqtrade/freqtrade/optimize/backtesting.py", line 199, in _get_ohlcv_as_lists
pair_data.loc[:, 'buy'] = 0 # cleanup from previous run
File "/home/rk/src/freqtrade/venv/lib/python3.9/site-packages/pandas/core/indexing.py", line 692, in __setitem__
iloc._setitem_with_indexer(indexer, value, self.name)
File "/home/rk/src/freqtrade/venv/lib/python3.9/site-packages/pandas/core/indexing.py", line 1587, in _setitem_with_indexer
raise ValueError(
ValueError: cannot set a frame with no defined index and a scalar
```
2021-05-13 06:47:28 +00:00
|
|
|
"No data left after adjusting for startup candles.")
|
|
|
|
|
|
|
|
min_date, max_date = history.get_timerange(preprocessed)
|
2020-09-18 05:44:11 +00:00
|
|
|
logger.info(f'Backtesting with data from {min_date.strftime(DATETIME_PRINT_FORMAT)} '
|
|
|
|
f'up to {max_date.strftime(DATETIME_PRINT_FORMAT)} '
|
2021-05-06 18:49:48 +00:00
|
|
|
f'({(max_date - min_date).days} days).')
|
2020-09-18 05:44:11 +00:00
|
|
|
# Execute backtest and store results
|
|
|
|
results = self.backtest(
|
|
|
|
processed=preprocessed,
|
2021-05-06 17:34:10 +00:00
|
|
|
start_date=min_date,
|
|
|
|
end_date=max_date,
|
2020-09-18 05:44:11 +00:00
|
|
|
max_open_trades=max_open_trades,
|
|
|
|
position_stacking=self.config.get('position_stacking', False),
|
|
|
|
enable_protections=self.config.get('enable_protections', False),
|
|
|
|
)
|
2021-01-13 06:47:03 +00:00
|
|
|
backtest_end_time = datetime.now(timezone.utc)
|
2021-04-30 05:31:57 +00:00
|
|
|
results.update({
|
2021-01-13 06:47:03 +00:00
|
|
|
'backtest_start_time': int(backtest_start_time.timestamp()),
|
|
|
|
'backtest_end_time': int(backtest_end_time.timestamp()),
|
2021-04-30 05:31:57 +00:00
|
|
|
})
|
|
|
|
self.all_results[self.strategy.get_strategy_name()] = results
|
|
|
|
|
2020-09-18 05:44:11 +00:00
|
|
|
return min_date, max_date
|
|
|
|
|
2018-02-09 07:35:38 +00:00
|
|
|
def start(self) -> None:
|
|
|
|
"""
|
2019-12-13 23:12:16 +00:00
|
|
|
Run backtesting end-to-end
|
2018-02-09 07:35:38 +00:00
|
|
|
:return: None
|
|
|
|
"""
|
2018-08-19 17:39:22 +00:00
|
|
|
data: Dict[str, Any] = {}
|
2019-12-13 23:12:16 +00:00
|
|
|
|
2019-10-23 18:13:43 +00:00
|
|
|
data, timerange = self.load_bt_data()
|
2021-04-23 17:22:41 +00:00
|
|
|
logger.info("Dataload complete. Calculating indicators")
|
2019-06-14 17:37:54 +00:00
|
|
|
|
2018-07-28 05:41:38 +00:00
|
|
|
for strat in self.strategylist:
|
2020-09-18 05:44:11 +00:00
|
|
|
min_date, max_date = self.backtest_one_strategy(strat, data, timerange)
|
2021-03-01 07:57:57 +00:00
|
|
|
if len(self.strategylist) > 0:
|
|
|
|
stats = generate_backtest_stats(data, self.all_results,
|
|
|
|
min_date=min_date, max_date=max_date)
|
2020-03-15 14:36:23 +00:00
|
|
|
|
2021-03-01 07:57:57 +00:00
|
|
|
if self.config.get('export', False):
|
|
|
|
store_backtest_stats(self.config['exportfilename'], stats)
|
2020-09-26 12:55:12 +00:00
|
|
|
|
2021-03-01 07:57:57 +00:00
|
|
|
# Show backtest results
|
|
|
|
show_backtest_results(self.config, stats)
|