stable/freqtrade/optimize/hyperopt_loss_interface.py

32 lines
951 B
Python
Raw Normal View History

2019-07-16 04:27:23 +00:00
"""
IHyperOptLoss interface
2019-11-13 08:38:06 +00:00
This module defines the interface for the loss-function for hyperopt
2019-07-16 04:27:23 +00:00
"""
from abc import ABC, abstractmethod
from datetime import datetime
from typing import Any, Dict
2019-07-16 04:27:23 +00:00
from pandas import DataFrame
2022-09-18 11:31:52 +00:00
from freqtrade.constants import Config
2019-07-16 04:27:23 +00:00
class IHyperOptLoss(ABC):
"""
2019-11-13 08:38:06 +00:00
Interface for freqtrade hyperopt Loss functions.
2019-07-16 04:27:23 +00:00
Defines the custom loss function (`hyperopt_loss_function()` which is evaluated every epoch.)
"""
timeframe: str
2019-07-16 04:27:23 +00:00
@staticmethod
@abstractmethod
def hyperopt_loss_function(*, results: DataFrame, trade_count: int,
min_date: datetime, max_date: datetime,
2022-09-18 11:31:52 +00:00
config: Config, processed: Dict[str, DataFrame],
backtest_stats: Dict[str, Any],
**kwargs) -> float:
2019-07-16 04:27:23 +00:00
"""
Objective function, returns smaller number for better results
"""