qbtrade/pkg/types/bollinger.go

9 lines
205 B
Go
Raw Normal View History

2024-06-27 14:42:38 +00:00
package types
// BollingerSetting contains the bollinger indicator setting propers
// Interval, Window and BandWidth
type BollingerSetting struct {
IntervalWindow
BandWidth float64 `json:"bandWidth"`
}