qbtrade/pkg/types/bollinger.go
2024-06-27 22:42:38 +08:00

9 lines
205 B
Go

package types
// BollingerSetting contains the bollinger indicator setting propers
// Interval, Window and BandWidth
type BollingerSetting struct {
IntervalWindow
BandWidth float64 `json:"bandWidth"`
}