bbgo/pkg/types/bollinger.go

9 lines
205 B
Go
Raw Permalink Normal View History

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