4ab047dfa7
Feat/add pytorch model support
983 lines
43 KiB
Python
983 lines
43 KiB
Python
import logging
|
|
import threading
|
|
import time
|
|
from abc import ABC, abstractmethod
|
|
from collections import deque
|
|
from datetime import datetime, timezone
|
|
from pathlib import Path
|
|
from typing import Any, Dict, List, Literal, Optional, Tuple
|
|
|
|
import numpy as np
|
|
import pandas as pd
|
|
import psutil
|
|
from numpy.typing import NDArray
|
|
from pandas import DataFrame
|
|
|
|
from freqtrade.configuration import TimeRange
|
|
from freqtrade.constants import Config
|
|
from freqtrade.data.dataprovider import DataProvider
|
|
from freqtrade.enums import RunMode
|
|
from freqtrade.exceptions import OperationalException
|
|
from freqtrade.exchange import timeframe_to_seconds
|
|
from freqtrade.freqai.data_drawer import FreqaiDataDrawer
|
|
from freqtrade.freqai.data_kitchen import FreqaiDataKitchen
|
|
from freqtrade.freqai.utils import plot_feature_importance, record_params
|
|
from freqtrade.strategy.interface import IStrategy
|
|
|
|
|
|
pd.options.mode.chained_assignment = None
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class IFreqaiModel(ABC):
|
|
"""
|
|
Class containing all tools for training and prediction in the strategy.
|
|
Base*PredictionModels inherit from this class.
|
|
|
|
Record of contribution:
|
|
FreqAI was developed by a group of individuals who all contributed specific skillsets to the
|
|
project.
|
|
|
|
Conception and software development:
|
|
Robert Caulk @robcaulk
|
|
|
|
Theoretical brainstorming:
|
|
Elin Törnquist @th0rntwig
|
|
|
|
Code review, software architecture brainstorming:
|
|
@xmatthias
|
|
|
|
Beta testing and bug reporting:
|
|
@bloodhunter4rc, Salah Lamkadem @ikonx, @ken11o2, @longyu, @paranoidandy, @smidelis, @smarm
|
|
Juha Nykänen @suikula, Wagner Costa @wagnercosta, Johan Vlugt @Jooopieeert
|
|
"""
|
|
|
|
def __init__(self, config: Config) -> None:
|
|
|
|
self.config = config
|
|
self.assert_config(self.config)
|
|
self.freqai_info: Dict[str, Any] = config["freqai"]
|
|
self.data_split_parameters: Dict[str, Any] = config.get("freqai", {}).get(
|
|
"data_split_parameters", {})
|
|
self.model_training_parameters: Dict[str, Any] = config.get("freqai", {}).get(
|
|
"model_training_parameters", {})
|
|
self.identifier: str = self.freqai_info.get("identifier", "no_id_provided")
|
|
self.retrain = False
|
|
self.first = True
|
|
self.set_full_path()
|
|
self.save_backtest_models: bool = self.freqai_info.get("save_backtest_models", True)
|
|
if self.save_backtest_models:
|
|
logger.info('Backtesting module configured to save all models.')
|
|
|
|
self.dd = FreqaiDataDrawer(Path(self.full_path), self.config)
|
|
# set current candle to arbitrary historical date
|
|
self.current_candle: datetime = datetime.fromtimestamp(637887600, tz=timezone.utc)
|
|
self.dd.current_candle = self.current_candle
|
|
self.scanning = False
|
|
self.ft_params = self.freqai_info["feature_parameters"]
|
|
self.corr_pairlist: List[str] = self.ft_params.get("include_corr_pairlist", [])
|
|
self.keras: bool = self.freqai_info.get("keras", False)
|
|
if self.keras and self.ft_params.get("DI_threshold", 0):
|
|
self.ft_params["DI_threshold"] = 0
|
|
logger.warning("DI threshold is not configured for Keras models yet. Deactivating.")
|
|
self.CONV_WIDTH = self.freqai_info.get('conv_width', 1)
|
|
if self.ft_params.get("inlier_metric_window", 0):
|
|
self.CONV_WIDTH = self.ft_params.get("inlier_metric_window", 0) * 2
|
|
self.class_names: List[str] = [] # used in classification subclasses
|
|
self.pair_it = 0
|
|
self.pair_it_train = 0
|
|
self.total_pairs = len(self.config.get("exchange", {}).get("pair_whitelist"))
|
|
self.train_queue = self._set_train_queue()
|
|
self.inference_time: float = 0
|
|
self.train_time: float = 0
|
|
self.begin_time: float = 0
|
|
self.begin_time_train: float = 0
|
|
self.base_tf_seconds = timeframe_to_seconds(self.config['timeframe'])
|
|
self.continual_learning = self.freqai_info.get('continual_learning', False)
|
|
self.plot_features = self.ft_params.get("plot_feature_importances", 0)
|
|
self.corr_dataframes: Dict[str, DataFrame] = {}
|
|
# get_corr_dataframes is controlling the caching of corr_dataframes
|
|
# for improved performance. Careful with this boolean.
|
|
self.get_corr_dataframes: bool = True
|
|
self._threads: List[threading.Thread] = []
|
|
self._stop_event = threading.Event()
|
|
self.metadata: Dict[str, Any] = self.dd.load_global_metadata_from_disk()
|
|
self.data_provider: Optional[DataProvider] = None
|
|
self.max_system_threads = max(int(psutil.cpu_count() * 2 - 2), 1)
|
|
self.can_short = True # overridden in start() with strategy.can_short
|
|
self.model: Any = None
|
|
if self.ft_params.get('principal_component_analysis', False) and self.continual_learning:
|
|
self.ft_params.update({'principal_component_analysis': False})
|
|
logger.warning('User tried to use PCA with continual learning. Deactivating PCA.')
|
|
|
|
record_params(config, self.full_path)
|
|
|
|
def __getstate__(self):
|
|
"""
|
|
Return an empty state to be pickled in hyperopt
|
|
"""
|
|
return ({})
|
|
|
|
def assert_config(self, config: Config) -> None:
|
|
|
|
if not config.get("freqai", {}):
|
|
raise OperationalException("No freqai parameters found in configuration file.")
|
|
|
|
def start(self, dataframe: DataFrame, metadata: dict, strategy: IStrategy) -> DataFrame:
|
|
"""
|
|
Entry point to the FreqaiModel from a specific pair, it will train a new model if
|
|
necessary before making the prediction.
|
|
|
|
:param dataframe: Full dataframe coming from strategy - it contains entire
|
|
backtesting timerange + additional historical data necessary to train
|
|
the model.
|
|
:param metadata: pair metadata coming from strategy.
|
|
:param strategy: Strategy to train on
|
|
"""
|
|
|
|
self.live = strategy.dp.runmode in (RunMode.DRY_RUN, RunMode.LIVE)
|
|
self.dd.set_pair_dict_info(metadata)
|
|
self.data_provider = strategy.dp
|
|
self.can_short = strategy.can_short
|
|
|
|
if self.live:
|
|
self.inference_timer('start')
|
|
self.dk = FreqaiDataKitchen(self.config, self.live, metadata["pair"])
|
|
dk = self.start_live(dataframe, metadata, strategy, self.dk)
|
|
dataframe = dk.remove_features_from_df(dk.return_dataframe)
|
|
|
|
# For backtesting, each pair enters and then gets trained for each window along the
|
|
# sliding window defined by "train_period_days" (training window) and "live_retrain_hours"
|
|
# (backtest window, i.e. window immediately following the training window).
|
|
# FreqAI slides the window and sequentially builds the backtesting results before returning
|
|
# the concatenated results for the full backtesting period back to the strategy.
|
|
else:
|
|
self.dk = FreqaiDataKitchen(self.config, self.live, metadata["pair"])
|
|
if not self.config.get("freqai_backtest_live_models", False):
|
|
logger.info(f"Training {len(self.dk.training_timeranges)} timeranges")
|
|
dk = self.start_backtesting(dataframe, metadata, self.dk, strategy)
|
|
dataframe = dk.remove_features_from_df(dk.return_dataframe)
|
|
else:
|
|
logger.info("Backtesting using historic predictions (live models)")
|
|
dk = self.start_backtesting_from_historic_predictions(
|
|
dataframe, metadata, self.dk)
|
|
dataframe = dk.return_dataframe
|
|
|
|
self.clean_up()
|
|
if self.live:
|
|
self.inference_timer('stop', metadata["pair"])
|
|
|
|
return dataframe
|
|
|
|
def clean_up(self):
|
|
"""
|
|
Objects that should be handled by GC already between coins, but
|
|
are explicitly shown here to help demonstrate the non-persistence of these
|
|
objects.
|
|
"""
|
|
self.model = None
|
|
self.dk = None
|
|
|
|
def _on_stop(self):
|
|
"""
|
|
Callback for Subclasses to override to include logic for shutting down resources
|
|
when SIGINT is sent.
|
|
"""
|
|
return
|
|
|
|
def shutdown(self):
|
|
"""
|
|
Cleans up threads on Shutdown, set stop event. Join threads to wait
|
|
for current training iteration.
|
|
"""
|
|
logger.info("Stopping FreqAI")
|
|
self._stop_event.set()
|
|
|
|
self.data_provider = None
|
|
self._on_stop()
|
|
|
|
logger.info("Waiting on Training iteration")
|
|
for _thread in self._threads:
|
|
_thread.join()
|
|
|
|
def start_scanning(self, *args, **kwargs) -> None:
|
|
"""
|
|
Start `self._start_scanning` in a separate thread
|
|
"""
|
|
_thread = threading.Thread(target=self._start_scanning, args=args, kwargs=kwargs)
|
|
self._threads.append(_thread)
|
|
_thread.start()
|
|
|
|
def _start_scanning(self, strategy: IStrategy) -> None:
|
|
"""
|
|
Function designed to constantly scan pairs for retraining on a separate thread (intracandle)
|
|
to improve model youth. This function is agnostic to data preparation/collection/storage,
|
|
it simply trains on what ever data is available in the self.dd.
|
|
:param strategy: IStrategy = The user defined strategy class
|
|
"""
|
|
while not self._stop_event.is_set():
|
|
time.sleep(1)
|
|
pair = self.train_queue[0]
|
|
|
|
# ensure pair is avaialble in dp
|
|
if pair not in strategy.dp.current_whitelist():
|
|
self.train_queue.popleft()
|
|
logger.warning(f'{pair} not in current whitelist, removing from train queue.')
|
|
continue
|
|
|
|
(_, trained_timestamp) = self.dd.get_pair_dict_info(pair)
|
|
|
|
dk = FreqaiDataKitchen(self.config, self.live, pair)
|
|
(
|
|
retrain,
|
|
new_trained_timerange,
|
|
data_load_timerange,
|
|
) = dk.check_if_new_training_required(trained_timestamp)
|
|
|
|
if retrain:
|
|
self.train_timer('start')
|
|
dk.set_paths(pair, new_trained_timerange.stopts)
|
|
try:
|
|
self.extract_data_and_train_model(
|
|
new_trained_timerange, pair, strategy, dk, data_load_timerange
|
|
)
|
|
except Exception as msg:
|
|
logger.warning(f"Training {pair} raised exception {msg.__class__.__name__}. "
|
|
f"Message: {msg}, skipping.")
|
|
|
|
self.train_timer('stop', pair)
|
|
|
|
# only rotate the queue after the first has been trained.
|
|
self.train_queue.rotate(-1)
|
|
|
|
self.dd.save_historic_predictions_to_disk()
|
|
if self.freqai_info.get('write_metrics_to_disk', False):
|
|
self.dd.save_metric_tracker_to_disk()
|
|
|
|
def start_backtesting(
|
|
self, dataframe: DataFrame, metadata: dict, dk: FreqaiDataKitchen, strategy: IStrategy
|
|
) -> FreqaiDataKitchen:
|
|
"""
|
|
The main broad execution for backtesting. For backtesting, each pair enters and then gets
|
|
trained for each window along the sliding window defined by "train_period_days"
|
|
(training window) and "backtest_period_days" (backtest window, i.e. window immediately
|
|
following the training window). FreqAI slides the window and sequentially builds
|
|
the backtesting results before returning the concatenated results for the full
|
|
backtesting period back to the strategy.
|
|
:param dataframe: DataFrame = strategy passed dataframe
|
|
:param metadata: Dict = pair metadata
|
|
:param dk: FreqaiDataKitchen = Data management/analysis tool associated to present pair only
|
|
:param strategy: Strategy to train on
|
|
:return:
|
|
FreqaiDataKitchen = Data management/analysis tool associated to present pair only
|
|
"""
|
|
|
|
self.pair_it += 1
|
|
train_it = 0
|
|
pair = metadata["pair"]
|
|
populate_indicators = True
|
|
check_features = True
|
|
# Loop enforcing the sliding window training/backtesting paradigm
|
|
# tr_train is the training time range e.g. 1 historical month
|
|
# tr_backtest is the backtesting time range e.g. the week directly
|
|
# following tr_train. Both of these windows slide through the
|
|
# entire backtest
|
|
for tr_train, tr_backtest in zip(dk.training_timeranges, dk.backtesting_timeranges):
|
|
(_, _) = self.dd.get_pair_dict_info(pair)
|
|
train_it += 1
|
|
total_trains = len(dk.backtesting_timeranges)
|
|
self.training_timerange = tr_train
|
|
len_backtest_df = len(dataframe.loc[(dataframe["date"] >= tr_backtest.startdt) & (
|
|
dataframe["date"] < tr_backtest.stopdt), :])
|
|
|
|
if not self.ensure_data_exists(len_backtest_df, tr_backtest, pair):
|
|
continue
|
|
|
|
self.log_backtesting_progress(tr_train, pair, train_it, total_trains)
|
|
|
|
timestamp_model_id = int(tr_train.stopts)
|
|
if dk.backtest_live_models:
|
|
timestamp_model_id = int(tr_backtest.startts)
|
|
|
|
dk.set_paths(pair, timestamp_model_id)
|
|
|
|
dk.set_new_model_names(pair, timestamp_model_id)
|
|
|
|
if dk.check_if_backtest_prediction_is_valid(len_backtest_df):
|
|
if check_features:
|
|
self.dd.load_metadata(dk)
|
|
dataframe_dummy_features = self.dk.use_strategy_to_populate_indicators(
|
|
strategy, prediction_dataframe=dataframe.tail(1), pair=pair
|
|
)
|
|
dk.find_features(dataframe_dummy_features)
|
|
self.check_if_feature_list_matches_strategy(dk)
|
|
check_features = False
|
|
append_df = dk.get_backtesting_prediction()
|
|
dk.append_predictions(append_df)
|
|
else:
|
|
if populate_indicators:
|
|
dataframe = self.dk.use_strategy_to_populate_indicators(
|
|
strategy, prediction_dataframe=dataframe, pair=pair
|
|
)
|
|
populate_indicators = False
|
|
|
|
dataframe_base_train = dataframe.loc[dataframe["date"] < tr_train.stopdt, :]
|
|
dataframe_base_train = strategy.set_freqai_targets(
|
|
dataframe_base_train, metadata=metadata)
|
|
dataframe_base_backtest = dataframe.loc[dataframe["date"] < tr_backtest.stopdt, :]
|
|
dataframe_base_backtest = strategy.set_freqai_targets(
|
|
dataframe_base_backtest, metadata=metadata)
|
|
|
|
tr_train = dk.buffer_timerange(tr_train)
|
|
|
|
dataframe_train = dk.slice_dataframe(tr_train, dataframe_base_train)
|
|
dataframe_backtest = dk.slice_dataframe(tr_backtest, dataframe_base_backtest)
|
|
|
|
dataframe_train = dk.remove_special_chars_from_feature_names(dataframe_train)
|
|
dataframe_backtest = dk.remove_special_chars_from_feature_names(dataframe_backtest)
|
|
dk.get_unique_classes_from_labels(dataframe_train)
|
|
|
|
if not self.model_exists(dk):
|
|
dk.find_features(dataframe_train)
|
|
dk.find_labels(dataframe_train)
|
|
|
|
try:
|
|
self.model = self.train(dataframe_train, pair, dk)
|
|
except Exception as msg:
|
|
logger.warning(
|
|
f"Training {pair} raised exception {msg.__class__.__name__}. "
|
|
f"Message: {msg}, skipping.", exc_info=True)
|
|
self.model = None
|
|
|
|
self.dd.pair_dict[pair]["trained_timestamp"] = int(
|
|
tr_train.stopts)
|
|
if self.plot_features and self.model is not None:
|
|
plot_feature_importance(self.model, pair, dk, self.plot_features)
|
|
if self.save_backtest_models and self.model is not None:
|
|
logger.info('Saving backtest model to disk.')
|
|
self.dd.save_data(self.model, pair, dk)
|
|
else:
|
|
logger.info('Saving metadata to disk.')
|
|
self.dd.save_metadata(dk)
|
|
else:
|
|
self.model = self.dd.load_data(pair, dk)
|
|
|
|
pred_df, do_preds = self.predict(dataframe_backtest, dk)
|
|
append_df = dk.get_predictions_to_append(pred_df, do_preds, dataframe_backtest)
|
|
dk.append_predictions(append_df)
|
|
dk.save_backtesting_prediction(append_df)
|
|
|
|
self.backtesting_fit_live_predictions(dk)
|
|
dk.fill_predictions(dataframe)
|
|
|
|
return dk
|
|
|
|
def start_live(
|
|
self, dataframe: DataFrame, metadata: dict, strategy: IStrategy, dk: FreqaiDataKitchen
|
|
) -> FreqaiDataKitchen:
|
|
"""
|
|
The main broad execution for dry/live. This function will check if a retraining should be
|
|
performed, and if so, retrain and reset the model.
|
|
:param dataframe: DataFrame = strategy passed dataframe
|
|
:param metadata: Dict = pair metadata
|
|
:param strategy: IStrategy = currently employed strategy
|
|
dk: FreqaiDataKitchen = Data management/analysis tool associated to present pair only
|
|
:returns:
|
|
dk: FreqaiDataKitchen = Data management/analysis tool associated to present pair only
|
|
"""
|
|
|
|
# get the model metadata associated with the current pair
|
|
(_, trained_timestamp) = self.dd.get_pair_dict_info(metadata["pair"])
|
|
|
|
# append the historic data once per round
|
|
if self.dd.historic_data:
|
|
self.dd.update_historic_data(strategy, dk)
|
|
logger.debug(f'Updating historic data on pair {metadata["pair"]}')
|
|
self.track_current_candle()
|
|
|
|
(_, new_trained_timerange, data_load_timerange) = dk.check_if_new_training_required(
|
|
trained_timestamp
|
|
)
|
|
dk.set_paths(metadata["pair"], new_trained_timerange.stopts)
|
|
|
|
# load candle history into memory if it is not yet.
|
|
if not self.dd.historic_data:
|
|
self.dd.load_all_pair_histories(data_load_timerange, dk)
|
|
|
|
if not self.scanning:
|
|
self.scanning = True
|
|
self.start_scanning(strategy)
|
|
|
|
# load the model and associated data into the data kitchen
|
|
self.model = self.dd.load_data(metadata["pair"], dk)
|
|
|
|
dataframe = dk.use_strategy_to_populate_indicators(
|
|
strategy, prediction_dataframe=dataframe, pair=metadata["pair"],
|
|
do_corr_pairs=self.get_corr_dataframes
|
|
)
|
|
|
|
if not self.model:
|
|
logger.warning(
|
|
f"No model ready for {metadata['pair']}, returning null values to strategy."
|
|
)
|
|
self.dd.return_null_values_to_strategy(dataframe, dk)
|
|
return dk
|
|
|
|
if self.corr_pairlist:
|
|
dataframe = self.cache_corr_pairlist_dfs(dataframe, dk)
|
|
|
|
dk.find_labels(dataframe)
|
|
|
|
self.build_strategy_return_arrays(dataframe, dk, metadata["pair"], trained_timestamp)
|
|
|
|
return dk
|
|
|
|
def build_strategy_return_arrays(
|
|
self, dataframe: DataFrame, dk: FreqaiDataKitchen, pair: str, trained_timestamp: int
|
|
) -> None:
|
|
|
|
# hold the historical predictions in memory so we are sending back
|
|
# correct array to strategy
|
|
|
|
if pair not in self.dd.model_return_values:
|
|
# first predictions are made on entire historical candle set coming from strategy. This
|
|
# allows FreqUI to show full return values.
|
|
pred_df, do_preds = self.predict(dataframe, dk)
|
|
if pair not in self.dd.historic_predictions:
|
|
self.set_initial_historic_predictions(pred_df, dk, pair, dataframe)
|
|
self.dd.set_initial_return_values(pair, pred_df)
|
|
|
|
dk.return_dataframe = self.dd.attach_return_values_to_return_dataframe(pair, dataframe)
|
|
return
|
|
elif self.dk.check_if_model_expired(trained_timestamp):
|
|
pred_df = DataFrame(np.zeros((2, len(dk.label_list))), columns=dk.label_list)
|
|
do_preds = np.ones(2, dtype=np.int_) * 2
|
|
dk.DI_values = np.zeros(2)
|
|
logger.warning(
|
|
f"Model expired for {pair}, returning null values to strategy. Strategy "
|
|
"construction should take care to consider this event with "
|
|
"prediction == 0 and do_predict == 2"
|
|
)
|
|
else:
|
|
# remaining predictions are made only on the most recent candles for performance and
|
|
# historical accuracy reasons.
|
|
pred_df, do_preds = self.predict(dataframe.iloc[-self.CONV_WIDTH:], dk, first=False)
|
|
|
|
if self.freqai_info.get('fit_live_predictions_candles', 0) and self.live:
|
|
self.fit_live_predictions(dk, pair)
|
|
self.dd.append_model_predictions(pair, pred_df, do_preds, dk, dataframe)
|
|
dk.return_dataframe = self.dd.attach_return_values_to_return_dataframe(pair, dataframe)
|
|
|
|
return
|
|
|
|
def check_if_feature_list_matches_strategy(
|
|
self, dk: FreqaiDataKitchen
|
|
) -> None:
|
|
"""
|
|
Ensure user is passing the proper feature set if they are reusing an `identifier` pointing
|
|
to a folder holding existing models.
|
|
:param dataframe: DataFrame = strategy provided dataframe
|
|
:param dk: FreqaiDataKitchen = non-persistent data container/analyzer for
|
|
current coin/bot loop
|
|
"""
|
|
|
|
if "training_features_list_raw" in dk.data:
|
|
feature_list = dk.data["training_features_list_raw"]
|
|
else:
|
|
feature_list = dk.data['training_features_list']
|
|
|
|
if dk.training_features_list != feature_list:
|
|
raise OperationalException(
|
|
"Trying to access pretrained model with `identifier` "
|
|
"but found different features furnished by current strategy."
|
|
"Change `identifier` to train from scratch, or ensure the"
|
|
"strategy is furnishing the same features as the pretrained"
|
|
"model. In case of --strategy-list, please be aware that FreqAI "
|
|
"requires all strategies to maintain identical "
|
|
"feature_engineering_* functions"
|
|
)
|
|
|
|
def data_cleaning_train(self, dk: FreqaiDataKitchen) -> None:
|
|
"""
|
|
Base data cleaning method for train.
|
|
Functions here improve/modify the input data by identifying outliers,
|
|
computing additional metrics, adding noise, reducing dimensionality etc.
|
|
"""
|
|
|
|
ft_params = self.freqai_info["feature_parameters"]
|
|
|
|
if ft_params.get('inlier_metric_window', 0):
|
|
dk.compute_inlier_metric(set_='train')
|
|
if self.freqai_info["data_split_parameters"]["test_size"] > 0:
|
|
dk.compute_inlier_metric(set_='test')
|
|
|
|
if ft_params.get(
|
|
"principal_component_analysis", False
|
|
):
|
|
dk.principal_component_analysis()
|
|
|
|
if ft_params.get("use_SVM_to_remove_outliers", False):
|
|
dk.use_SVM_to_remove_outliers(predict=False)
|
|
|
|
if ft_params.get("DI_threshold", 0):
|
|
dk.data["avg_mean_dist"] = dk.compute_distances()
|
|
|
|
if ft_params.get("use_DBSCAN_to_remove_outliers", False):
|
|
if dk.pair in self.dd.old_DBSCAN_eps:
|
|
eps = self.dd.old_DBSCAN_eps[dk.pair]
|
|
else:
|
|
eps = None
|
|
dk.use_DBSCAN_to_remove_outliers(predict=False, eps=eps)
|
|
self.dd.old_DBSCAN_eps[dk.pair] = dk.data['DBSCAN_eps']
|
|
|
|
if self.freqai_info["feature_parameters"].get('noise_standard_deviation', 0):
|
|
dk.add_noise_to_training_features()
|
|
|
|
def data_cleaning_predict(self, dk: FreqaiDataKitchen) -> None:
|
|
"""
|
|
Base data cleaning method for predict.
|
|
Functions here are complementary to the functions of data_cleaning_train.
|
|
"""
|
|
ft_params = self.freqai_info["feature_parameters"]
|
|
|
|
# ensure user is feeding the correct indicators to the model
|
|
self.check_if_feature_list_matches_strategy(dk)
|
|
|
|
if ft_params.get('inlier_metric_window', 0):
|
|
dk.compute_inlier_metric(set_='predict')
|
|
|
|
if ft_params.get(
|
|
"principal_component_analysis", False
|
|
):
|
|
dk.pca_transform(dk.data_dictionary['prediction_features'])
|
|
|
|
if ft_params.get("use_SVM_to_remove_outliers", False):
|
|
dk.use_SVM_to_remove_outliers(predict=True)
|
|
|
|
if ft_params.get("DI_threshold", 0):
|
|
dk.check_if_pred_in_training_spaces()
|
|
|
|
if ft_params.get("use_DBSCAN_to_remove_outliers", False):
|
|
dk.use_DBSCAN_to_remove_outliers(predict=True)
|
|
|
|
def model_exists(self, dk: FreqaiDataKitchen) -> bool:
|
|
"""
|
|
Given a pair and path, check if a model already exists
|
|
:param pair: pair e.g. BTC/USD
|
|
:param path: path to model
|
|
:return:
|
|
:boolean: whether the model file exists or not.
|
|
"""
|
|
if self.dd.model_type == 'joblib':
|
|
file_type = ".joblib"
|
|
elif self.dd.model_type == 'keras':
|
|
file_type = ".h5"
|
|
elif self.dd.model_type in ["stable_baselines3", "sb3_contrib", "pytorch"]:
|
|
file_type = ".zip"
|
|
|
|
path_to_modelfile = Path(dk.data_path / f"{dk.model_filename}_model{file_type}")
|
|
file_exists = path_to_modelfile.is_file()
|
|
if file_exists:
|
|
logger.info("Found model at %s", dk.data_path / dk.model_filename)
|
|
else:
|
|
logger.info("Could not find model at %s", dk.data_path / dk.model_filename)
|
|
return file_exists
|
|
|
|
def set_full_path(self) -> None:
|
|
"""
|
|
Creates and sets the full path for the identifier
|
|
"""
|
|
self.full_path = Path(
|
|
self.config["user_data_dir"] / "models" / f"{self.identifier}"
|
|
)
|
|
self.full_path.mkdir(parents=True, exist_ok=True)
|
|
|
|
def extract_data_and_train_model(
|
|
self,
|
|
new_trained_timerange: TimeRange,
|
|
pair: str,
|
|
strategy: IStrategy,
|
|
dk: FreqaiDataKitchen,
|
|
data_load_timerange: TimeRange,
|
|
):
|
|
"""
|
|
Retrieve data and train model.
|
|
:param new_trained_timerange: TimeRange = the timerange to train the model on
|
|
:param metadata: dict = strategy provided metadata
|
|
:param strategy: IStrategy = user defined strategy object
|
|
:param dk: FreqaiDataKitchen = non-persistent data container for current coin/loop
|
|
:param data_load_timerange: TimeRange = the amount of data to be loaded
|
|
for populating indicators
|
|
(larger than new_trained_timerange so that
|
|
new_trained_timerange does not contain any NaNs)
|
|
"""
|
|
|
|
corr_dataframes, base_dataframes = self.dd.get_base_and_corr_dataframes(
|
|
data_load_timerange, pair, dk
|
|
)
|
|
|
|
unfiltered_dataframe = dk.use_strategy_to_populate_indicators(
|
|
strategy, corr_dataframes, base_dataframes, pair
|
|
)
|
|
|
|
new_trained_timerange = dk.buffer_timerange(new_trained_timerange)
|
|
|
|
unfiltered_dataframe = dk.slice_dataframe(new_trained_timerange, unfiltered_dataframe)
|
|
|
|
# find the features indicated by strategy and store in datakitchen
|
|
dk.find_features(unfiltered_dataframe)
|
|
dk.find_labels(unfiltered_dataframe)
|
|
|
|
model = self.train(unfiltered_dataframe, pair, dk)
|
|
|
|
self.dd.pair_dict[pair]["trained_timestamp"] = new_trained_timerange.stopts
|
|
dk.set_new_model_names(pair, new_trained_timerange.stopts)
|
|
self.dd.save_data(model, pair, dk)
|
|
|
|
if self.plot_features:
|
|
plot_feature_importance(model, pair, dk, self.plot_features)
|
|
|
|
self.dd.purge_old_models()
|
|
|
|
def set_initial_historic_predictions(
|
|
self, pred_df: DataFrame, dk: FreqaiDataKitchen, pair: str, strat_df: DataFrame
|
|
) -> None:
|
|
"""
|
|
This function is called only if the datadrawer failed to load an
|
|
existing set of historic predictions. In this case, it builds
|
|
the structure and sets fake predictions off the first training
|
|
data. After that, FreqAI will append new real predictions to the
|
|
set of historic predictions.
|
|
|
|
These values are used to generate live statistics which can be used
|
|
in the strategy for adaptive values. E.g. &*_mean/std are quantities
|
|
that can computed based on live predictions from the set of historical
|
|
predictions. Those values can be used in the user strategy to better
|
|
assess prediction rarity, and thus wait for probabilistically favorable
|
|
entries relative to the live historical predictions.
|
|
|
|
If the user reuses an identifier on a subsequent instance,
|
|
this function will not be called. In that case, "real" predictions
|
|
will be appended to the loaded set of historic predictions.
|
|
:param df: DataFrame = the dataframe containing the training feature data
|
|
:param model: Any = A model which was `fit` using a common library such as
|
|
catboost or lightgbm
|
|
:param dk: FreqaiDataKitchen = object containing methods for data analysis
|
|
:param pair: str = current pair
|
|
"""
|
|
|
|
self.dd.historic_predictions[pair] = pred_df
|
|
hist_preds_df = self.dd.historic_predictions[pair]
|
|
|
|
self.set_start_dry_live_date(strat_df)
|
|
|
|
for label in hist_preds_df.columns:
|
|
if hist_preds_df[label].dtype == object:
|
|
continue
|
|
hist_preds_df[f'{label}_mean'] = 0
|
|
hist_preds_df[f'{label}_std'] = 0
|
|
|
|
hist_preds_df['do_predict'] = 0
|
|
|
|
if self.freqai_info['feature_parameters'].get('DI_threshold', 0) > 0:
|
|
hist_preds_df['DI_values'] = 0
|
|
|
|
for return_str in dk.data['extra_returns_per_train']:
|
|
hist_preds_df[return_str] = dk.data['extra_returns_per_train'][return_str]
|
|
|
|
hist_preds_df['close_price'] = strat_df['close']
|
|
hist_preds_df['date_pred'] = strat_df['date']
|
|
|
|
# # for keras type models, the conv_window needs to be prepended so
|
|
# # viewing is correct in frequi
|
|
if self.freqai_info.get('keras', False) or self.ft_params.get('inlier_metric_window', 0):
|
|
n_lost_points = self.freqai_info.get('conv_width', 2)
|
|
zeros_df = DataFrame(np.zeros((n_lost_points, len(hist_preds_df.columns))),
|
|
columns=hist_preds_df.columns)
|
|
self.dd.historic_predictions[pair] = pd.concat(
|
|
[zeros_df, hist_preds_df], axis=0, ignore_index=True)
|
|
|
|
def fit_live_predictions(self, dk: FreqaiDataKitchen, pair: str) -> None:
|
|
"""
|
|
Fit the labels with a gaussian distribution
|
|
"""
|
|
import scipy as spy
|
|
|
|
# add classes from classifier label types if used
|
|
full_labels = dk.label_list + dk.unique_class_list
|
|
|
|
num_candles = self.freqai_info.get("fit_live_predictions_candles", 100)
|
|
dk.data["labels_mean"], dk.data["labels_std"] = {}, {}
|
|
for label in full_labels:
|
|
if self.dd.historic_predictions[dk.pair][label].dtype == object:
|
|
continue
|
|
f = spy.stats.norm.fit(
|
|
self.dd.historic_predictions[dk.pair][label].tail(num_candles))
|
|
dk.data["labels_mean"][label], dk.data["labels_std"][label] = f[0], f[1]
|
|
|
|
return
|
|
|
|
def inference_timer(self, do: Literal['start', 'stop'] = 'start', pair: str = ''):
|
|
"""
|
|
Timer designed to track the cumulative time spent in FreqAI for one pass through
|
|
the whitelist. This will check if the time spent is more than 1/4 the time
|
|
of a single candle, and if so, it will warn the user of degraded performance
|
|
"""
|
|
if do == 'start':
|
|
self.pair_it += 1
|
|
self.begin_time = time.time()
|
|
elif do == 'stop':
|
|
end = time.time()
|
|
time_spent = (end - self.begin_time)
|
|
if self.freqai_info.get('write_metrics_to_disk', False):
|
|
self.dd.update_metric_tracker('inference_time', time_spent, pair)
|
|
self.inference_time += time_spent
|
|
if self.pair_it == self.total_pairs:
|
|
logger.info(
|
|
f'Total time spent inferencing pairlist {self.inference_time:.2f} seconds')
|
|
if self.inference_time > 0.25 * self.base_tf_seconds:
|
|
logger.warning("Inference took over 25% of the candle time. Reduce pairlist to"
|
|
" avoid blinding open trades and degrading performance.")
|
|
self.pair_it = 0
|
|
self.inference_time = 0
|
|
return
|
|
|
|
def train_timer(self, do: Literal['start', 'stop'] = 'start', pair: str = ''):
|
|
"""
|
|
Timer designed to track the cumulative time spent training the full pairlist in
|
|
FreqAI.
|
|
"""
|
|
if do == 'start':
|
|
self.pair_it_train += 1
|
|
self.begin_time_train = time.time()
|
|
elif do == 'stop':
|
|
end = time.time()
|
|
time_spent = (end - self.begin_time_train)
|
|
if self.freqai_info.get('write_metrics_to_disk', False):
|
|
self.dd.collect_metrics(time_spent, pair)
|
|
|
|
self.train_time += time_spent
|
|
if self.pair_it_train == self.total_pairs:
|
|
logger.info(
|
|
f'Total time spent training pairlist {self.train_time:.2f} seconds')
|
|
self.pair_it_train = 0
|
|
self.train_time = 0
|
|
return
|
|
|
|
def get_init_model(self, pair: str) -> Any:
|
|
if pair not in self.dd.model_dictionary or not self.continual_learning:
|
|
init_model = None
|
|
else:
|
|
init_model = self.dd.model_dictionary[pair]
|
|
|
|
return init_model
|
|
|
|
def _set_train_queue(self):
|
|
"""
|
|
Sets train queue from existing train timestamps if they exist
|
|
otherwise it sets the train queue based on the provided whitelist.
|
|
"""
|
|
current_pairlist = self.config.get("exchange", {}).get("pair_whitelist")
|
|
if not self.dd.pair_dict:
|
|
logger.info('Set fresh train queue from whitelist. '
|
|
f'Queue: {current_pairlist}')
|
|
return deque(current_pairlist)
|
|
|
|
best_queue = deque()
|
|
|
|
pair_dict_sorted = sorted(self.dd.pair_dict.items(),
|
|
key=lambda k: k[1]['trained_timestamp'])
|
|
for pair in pair_dict_sorted:
|
|
if pair[0] in current_pairlist:
|
|
best_queue.append(pair[0])
|
|
for pair in current_pairlist:
|
|
if pair not in best_queue:
|
|
best_queue.appendleft(pair)
|
|
|
|
logger.info('Set existing queue from trained timestamps. '
|
|
f'Best approximation queue: {best_queue}')
|
|
return best_queue
|
|
|
|
def cache_corr_pairlist_dfs(self, dataframe: DataFrame, dk: FreqaiDataKitchen) -> DataFrame:
|
|
"""
|
|
Cache the corr_pairlist dfs to speed up performance for subsequent pairs during the
|
|
current candle.
|
|
:param dataframe: strategy fed dataframe
|
|
:param dk: datakitchen object for current asset
|
|
:return: dataframe to attach/extract cached corr_pair dfs to/from.
|
|
"""
|
|
|
|
if self.get_corr_dataframes:
|
|
self.corr_dataframes = dk.extract_corr_pair_columns_from_populated_indicators(dataframe)
|
|
if not self.corr_dataframes:
|
|
logger.warning("Couldn't cache corr_pair dataframes for improved performance. "
|
|
"Consider ensuring that the full coin/stake, e.g. XYZ/USD, "
|
|
"is included in the column names when you are creating features "
|
|
"in `feature_engineering_*` functions.")
|
|
self.get_corr_dataframes = not bool(self.corr_dataframes)
|
|
elif self.corr_dataframes:
|
|
dataframe = dk.attach_corr_pair_columns(
|
|
dataframe, self.corr_dataframes, dk.pair)
|
|
|
|
return dataframe
|
|
|
|
def track_current_candle(self):
|
|
"""
|
|
Checks if the latest candle appended by the datadrawer is
|
|
equivalent to the latest candle seen by FreqAI. If not, it
|
|
asks to refresh the cached corr_dfs, and resets the pair
|
|
counter.
|
|
"""
|
|
if self.dd.current_candle > self.current_candle:
|
|
self.get_corr_dataframes = True
|
|
self.pair_it = 1
|
|
self.current_candle = self.dd.current_candle
|
|
|
|
def ensure_data_exists(self, len_dataframe_backtest: int,
|
|
tr_backtest: TimeRange, pair: str) -> bool:
|
|
"""
|
|
Check if the dataframe is empty, if not, report useful information to user.
|
|
:param len_dataframe_backtest: the len of backtesting dataframe
|
|
:param tr_backtest: current backtesting timerange.
|
|
:param pair: current pair
|
|
:return: if the data exists or not
|
|
"""
|
|
if self.config.get("freqai_backtest_live_models", False) and len_dataframe_backtest == 0:
|
|
logger.info(f"No data found for pair {pair} from "
|
|
f"from { tr_backtest.start_fmt} to {tr_backtest.stop_fmt}. "
|
|
"Probably more than one training within the same candle period.")
|
|
return False
|
|
return True
|
|
|
|
def log_backtesting_progress(self, tr_train: TimeRange, pair: str,
|
|
train_it: int, total_trains: int):
|
|
"""
|
|
Log the backtesting progress so user knows how many pairs have been trained and
|
|
how many more pairs/trains remain.
|
|
:param tr_train: the training timerange
|
|
:param train_it: the train iteration for the current pair (the sliding window progress)
|
|
:param pair: the current pair
|
|
:param total_trains: total trains (total number of slides for the sliding window)
|
|
"""
|
|
if not self.config.get("freqai_backtest_live_models", False):
|
|
logger.info(
|
|
f"Training {pair}, {self.pair_it}/{self.total_pairs} pairs"
|
|
f" from {tr_train.start_fmt} "
|
|
f"to {tr_train.stop_fmt}, {train_it}/{total_trains} "
|
|
"trains"
|
|
)
|
|
|
|
def backtesting_fit_live_predictions(self, dk: FreqaiDataKitchen):
|
|
"""
|
|
Apply fit_live_predictions function in backtesting with a dummy historic_predictions
|
|
The loop is required to simulate dry/live operation, as it is not possible to predict
|
|
the type of logic implemented by the user.
|
|
:param dk: datakitchen object
|
|
"""
|
|
fit_live_predictions_candles = self.freqai_info.get("fit_live_predictions_candles", 0)
|
|
if fit_live_predictions_candles:
|
|
logger.info("Applying fit_live_predictions in backtesting")
|
|
label_columns = [col for col in dk.full_df.columns if (
|
|
col.startswith("&") and
|
|
not (col.startswith("&") and col.endswith("_mean")) and
|
|
not (col.startswith("&") and col.endswith("_std")) and
|
|
col not in self.dk.data["extra_returns_per_train"])
|
|
]
|
|
|
|
for index in range(len(dk.full_df)):
|
|
if index >= fit_live_predictions_candles:
|
|
self.dd.historic_predictions[self.dk.pair] = (
|
|
dk.full_df.iloc[index - fit_live_predictions_candles:index])
|
|
self.fit_live_predictions(self.dk, self.dk.pair)
|
|
for label in label_columns:
|
|
if dk.full_df[label].dtype == object:
|
|
continue
|
|
if "labels_mean" in self.dk.data:
|
|
dk.full_df.at[index, f"{label}_mean"] = (
|
|
self.dk.data["labels_mean"][label])
|
|
if "labels_std" in self.dk.data:
|
|
dk.full_df.at[index, f"{label}_std"] = self.dk.data["labels_std"][label]
|
|
|
|
for extra_col in self.dk.data["extra_returns_per_train"]:
|
|
dk.full_df.at[index, f"{extra_col}"] = (
|
|
self.dk.data["extra_returns_per_train"][extra_col])
|
|
|
|
return
|
|
|
|
def update_metadata(self, metadata: Dict[str, Any]):
|
|
"""
|
|
Update global metadata and save the updated json file
|
|
:param metadata: new global metadata dict
|
|
"""
|
|
self.dd.save_global_metadata_to_disk(metadata)
|
|
self.metadata = metadata
|
|
|
|
def set_start_dry_live_date(self, live_dataframe: DataFrame):
|
|
key_name = "start_dry_live_date"
|
|
if key_name not in self.metadata:
|
|
metadata = self.metadata
|
|
metadata[key_name] = int(
|
|
pd.to_datetime(live_dataframe.tail(1)["date"].values[0]).timestamp())
|
|
self.update_metadata(metadata)
|
|
|
|
def start_backtesting_from_historic_predictions(
|
|
self, dataframe: DataFrame, metadata: dict, dk: FreqaiDataKitchen
|
|
) -> FreqaiDataKitchen:
|
|
"""
|
|
:param dataframe: DataFrame = strategy passed dataframe
|
|
:param metadata: Dict = pair metadata
|
|
:param dk: FreqaiDataKitchen = Data management/analysis tool associated to present pair only
|
|
:return:
|
|
FreqaiDataKitchen = Data management/analysis tool associated to present pair only
|
|
"""
|
|
pair = metadata["pair"]
|
|
dk.return_dataframe = dataframe
|
|
saved_dataframe = self.dd.historic_predictions[pair]
|
|
columns_to_drop = list(set(saved_dataframe.columns).intersection(
|
|
dk.return_dataframe.columns))
|
|
dk.return_dataframe = dk.return_dataframe.drop(columns=list(columns_to_drop))
|
|
dk.return_dataframe = pd.merge(
|
|
dk.return_dataframe, saved_dataframe, how='left', left_on='date', right_on="date_pred")
|
|
return dk
|
|
|
|
# Following methods which are overridden by user made prediction models.
|
|
# See freqai/prediction_models/CatboostPredictionModel.py for an example.
|
|
|
|
@abstractmethod
|
|
def train(self, unfiltered_df: DataFrame, pair: str,
|
|
dk: FreqaiDataKitchen, **kwargs) -> Any:
|
|
"""
|
|
Filter the training data and train a model to it. Train makes heavy use of the datahandler
|
|
for storing, saving, loading, and analyzing the data.
|
|
:param unfiltered_df: Full dataframe for the current training period
|
|
:param metadata: pair metadata from strategy.
|
|
:return: Trained model which can be used to inference (self.predict)
|
|
"""
|
|
|
|
@abstractmethod
|
|
def fit(self, data_dictionary: Dict[str, Any], dk: FreqaiDataKitchen, **kwargs) -> Any:
|
|
"""
|
|
Most regressors use the same function names and arguments e.g. user
|
|
can drop in LGBMRegressor in place of CatBoostRegressor and all data
|
|
management will be properly handled by Freqai.
|
|
:param data_dictionary: Dict = the dictionary constructed by DataHandler to hold
|
|
all the training and test data/labels.
|
|
"""
|
|
|
|
return
|
|
|
|
@abstractmethod
|
|
def predict(
|
|
self, unfiltered_df: DataFrame, dk: FreqaiDataKitchen, **kwargs
|
|
) -> Tuple[DataFrame, NDArray[np.int_]]:
|
|
"""
|
|
Filter the prediction features data and predict with it.
|
|
:param unfiltered_df: Full dataframe for the current backtest period.
|
|
:param dk: FreqaiDataKitchen = Data management/analysis tool associated to present pair only
|
|
:param first: boolean = whether this is the first prediction or not.
|
|
:return:
|
|
:predictions: np.array of predictions
|
|
:do_predict: np.array of 1s and 0s to indicate places where freqai needed to remove
|
|
data (NaNs) or felt uncertain about data (i.e. SVM and/or DI index)
|
|
"""
|