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 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.)
|
|
|
|
"""
|
|
|
|
ticker_interval: str
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
@abstractmethod
|
|
|
|
def hyperopt_loss_function(results: DataFrame, trade_count: int,
|
|
|
|
min_date: datetime, max_date: datetime, *args, **kwargs) -> float:
|
|
|
|
"""
|
|
|
|
Objective function, returns smaller number for better results
|
|
|
|
"""
|