package finance // DrawdownResult holds the maximum drawdown value and the indices where it occurred. type DrawdownResult struct { Value float64 Start int End int }