package indicator
func max(x, y int) int {
if x > y {
return x
}
return y
func min(x, y int) int {
if x < y {