bbgo_origin/pkg/indicator/atr2.go
2023-05-30 13:53:59 +08:00

13 lines
226 B
Go

package indicator
type ATRStream struct {
// embedded struct
*RMAStream
}
func ATR2(source KLineSubscription, window int) *ATRStream {
tr := TR2(source)
rma := RMA2(tr, window, true)
return &ATRStream{RMAStream: rma}
}