mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 06:53:52 +00:00
fix bollinger indicator history kline push
This commit is contained in:
parent
884b8f2b45
commit
dd07bc7159
|
@ -188,8 +188,9 @@ func (environ *Environment) ConfigureDatabase(ctx context.Context, config *Confi
|
|||
dbDriver = "mysql"
|
||||
}
|
||||
|
||||
if dbDriver == "" {
|
||||
return fmt.Errorf("either env DB_DRIVER or config.Driver is not set")
|
||||
// database is optional
|
||||
if dbDriver == "" || dbDSN == "" {
|
||||
return nil
|
||||
}
|
||||
|
||||
return environ.ConfigureDatabaseDriver(ctx, dbDriver, dbDSN, extraPkgNames...)
|
||||
|
|
|
@ -38,7 +38,6 @@ func BOLL(source types.Float64Source, window int, k float64) *BOLLStream {
|
|||
SMA: sma,
|
||||
StdDev: stdDev,
|
||||
}
|
||||
s.Bind(source, s)
|
||||
|
||||
// on band update
|
||||
s.Float64Series.OnUpdate(func(band float64) {
|
||||
|
@ -46,6 +45,8 @@ func BOLL(source types.Float64Source, window int, k float64) *BOLLStream {
|
|||
s.UpBand.PushAndEmit(mid + band)
|
||||
s.DownBand.PushAndEmit(mid - band)
|
||||
})
|
||||
|
||||
s.Bind(source, s)
|
||||
return s
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user