support: fix triggerEMA check

This commit is contained in:
c9s 2022-01-10 13:49:36 +08:00
parent 2d4ce2d41c
commit b56e988fc9

View File

@ -363,6 +363,7 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
return
}
if s.triggerEMA != nil && s.longTermEMA != nil {
s.Notify("Found %s support: the close price %f is below trigger EMA %f and above long term EMA %f and volume %f > minimum volume %f",
s.Symbol,
closePrice.Float64(),
@ -371,6 +372,14 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
kline.Volume,
s.MinVolume.Float64(),
kline)
} else {
s.Notify("Found %s support: the close price %f and volume %f > minimum volume %f",
s.Symbol,
closePrice.Float64(),
kline.Volume,
s.MinVolume.Float64(),
kline)
}
quantity, err := s.calculateQuantity(session, types.SideTypeBuy, closePrice, kline.Volume)
if err != nil {