mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
Merge pull request #1180 from c9s/c9s/grid2-params-fix
FIX: [grid2] fix base quote investment check
This commit is contained in:
commit
a7a4660b2e
|
@ -766,7 +766,7 @@ func (s *Strategy) calculateBaseQuoteInvestmentQuantity(quoteInvestment, baseInv
|
|||
// then reduce the numberOfSellOrders
|
||||
numberOfSellOrders := s.BaseGridNum
|
||||
|
||||
// if it's not configured
|
||||
// if it's not configured, calculate the number of sell orders
|
||||
if numberOfSellOrders == 0 {
|
||||
for i := len(pins) - 1; i >= 0; i-- {
|
||||
pin := pins[i]
|
||||
|
@ -850,12 +850,16 @@ func (s *Strategy) calculateBaseQuoteInvestmentQuantity(quoteInvestment, baseInv
|
|||
}
|
||||
}
|
||||
|
||||
quoteSideQuantity := quoteInvestment.Div(totalQuotePrice)
|
||||
if numberOfSellOrders > 0 {
|
||||
return fixedpoint.Min(quoteSideQuantity, baseQuantity), nil
|
||||
if totalQuotePrice.Sign() > 0 && quoteInvestment.Sign() > 0 {
|
||||
quoteSideQuantity := quoteInvestment.Div(totalQuotePrice)
|
||||
if numberOfSellOrders > 0 {
|
||||
return fixedpoint.Min(quoteSideQuantity, baseQuantity), nil
|
||||
}
|
||||
|
||||
return quoteSideQuantity, nil
|
||||
}
|
||||
|
||||
return quoteSideQuantity, nil
|
||||
return baseQuantity, nil
|
||||
}
|
||||
|
||||
func (s *Strategy) newTriggerPriceHandler(ctx context.Context, session *bbgo.ExchangeSession) types.KLineCallback {
|
||||
|
@ -1079,7 +1083,7 @@ func (s *Strategy) openGrid(ctx context.Context, session *bbgo.ExchangeSession)
|
|||
}
|
||||
} else {
|
||||
// calculate the quantity from the investment configuration
|
||||
if !s.QuoteInvestment.IsZero() && !s.BaseInvestment.IsZero() {
|
||||
if !s.BaseInvestment.IsZero() {
|
||||
quantity, err2 := s.calculateBaseQuoteInvestmentQuantity(s.QuoteInvestment, s.BaseInvestment, lastPrice, s.grid.Pins)
|
||||
if err2 != nil {
|
||||
s.EmitGridError(err2)
|
||||
|
|
Loading…
Reference in New Issue
Block a user