indicator/mabase.go

11 lines
142 B
Go
Raw Permalink Normal View History

2024-06-25 15:17:36 +00:00
package indicator
type MABase struct {
winLen int //window length
result float64
}
func (m *MABase) Result() float64 {
return m.result
}