stable/freqtrade/optimize/hyperopt_loss_interface.py

29 lines
845 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 Dict
2019-07-16 04:27:23 +00:00
from pandas import DataFrame
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,
config: Dict, processed: Dict[str, DataFrame],
*args, **kwargs) -> float:
2019-07-16 04:27:23 +00:00
"""
Objective function, returns smaller number for better results
"""