In cases of no losing trade, sortino ratio can't be calculated.

closes #7977
This commit is contained in:
Matthias 2023-01-04 17:55:24 +01:00
parent 7a43f37eb7
commit 6470635753

View File

@ -239,7 +239,7 @@ def calculate_sortino(trades: pd.DataFrame, min_date: datetime, max_date: dateti
down_stdev = np.std(trades.loc[trades['profit_abs'] < 0, 'profit_abs'] / starting_balance)
if down_stdev != 0:
if down_stdev != 0 and not np.isnan(down_stdev):
sortino_ratio = expected_returns_mean / down_stdev * np.sqrt(365)
else:
# Define high (negative) sortino ratio to be clear that this is NOT optimal.