qbtrade/pkg/indicator/util.go

16 lines
146 B
Go
Raw Normal View History

2024-06-27 14:42:38 +00:00
package indicator
func max(x, y int) int {
if x > y {
return x
}
return y
}
func Min(x, y int) int {
if x < y {
return x
}
return y
}