package bbgo import "strconv" func MustParseFloat(s string) float64 { v, err := strconv.ParseFloat(s, 64) if err != nil { panic(err) } return v }