xmaker: fix MaxExposurePosition check condition

This commit is contained in:
c9s 2024-09-03 03:25:37 +08:00
parent f12ba1adb9
commit 7135895006
No known key found for this signature in database
GPG Key ID: 7385E7E464CB0A54

View File

@ -624,12 +624,14 @@ func (s *Strategy) updateQuote(ctx context.Context) {
if s.MaxExposurePosition.Sign() > 0 {
pos := s.Position.GetBase()
if pos.Compare(s.MaxExposurePosition.Neg()) > 0 {
if pos.Compare(s.MaxExposurePosition.Neg()) <= 0 {
// stop sell if we over-sell
disableMakerAsk = true
} else if pos.Compare(s.MaxExposurePosition) > 0 {
s.logger.Warnf("%s ask maker is disabled: %f exceeded max exposure %f", s.Symbol, pos.Float64(), s.MaxExposurePosition.Float64())
} else if pos.Compare(s.MaxExposurePosition) >= 0 {
// stop buy if we over buy
disableMakerBid = true
s.logger.Warnf("%s bid maker is disabled: %f exceeded max exposure %f", s.Symbol, pos.Float64(), s.MaxExposurePosition.Float64())
}
}