Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion utils/analysis/distribution_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def get_etl_cvar_p5k_10k_vales(dist: dict, bet_cost: float, total_weight=None) -
etl40 += win * (weight / total_weight)
cvar = conditional_value_at_risk(0.999, dist, total_weight)

return p5k, p10k, etl10k, etl40, cvar
return p5k, p10k, etl10k, etl40, cvar / bet_cost


def get_maxwin_hitrate(dist: dict, total_weight=None) -> float:
Expand Down
Loading