mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-11-29 08:33:07 +00:00
chore: remove unused kwargs
This commit is contained in:
@@ -30,9 +30,6 @@ TARGET_TRADE_AMOUNT variable sets the minimum number of trades required to avoid
|
|||||||
If the trade amount falls below this threshold, the penalty is applied.
|
If the trade amount falls below this threshold, the penalty is applied.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from datetime import datetime
|
|
||||||
from typing import Any
|
|
||||||
|
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from pandas import DataFrame
|
from pandas import DataFrame
|
||||||
|
|
||||||
@@ -60,11 +57,7 @@ class MultiMetricHyperOptLoss(IHyperOptLoss):
|
|||||||
def hyperopt_loss_function(
|
def hyperopt_loss_function(
|
||||||
results: DataFrame,
|
results: DataFrame,
|
||||||
trade_count: int,
|
trade_count: int,
|
||||||
min_date: datetime,
|
|
||||||
max_date: datetime,
|
|
||||||
config: Config,
|
config: Config,
|
||||||
processed: dict[str, DataFrame],
|
|
||||||
backtest_stats: dict[str, Any],
|
|
||||||
**kwargs,
|
**kwargs,
|
||||||
) -> float:
|
) -> float:
|
||||||
total_profit = results["profit_abs"].sum()
|
total_profit = results["profit_abs"].sum()
|
||||||
|
|||||||
Reference in New Issue
Block a user