grid2: consider quote fee in the buy order

This commit is contained in:
c9s 2023-03-03 15:50:31 +08:00
parent bfcb60d9d7
commit 5b18f19b9c
No known key found for this signature in database
GPG Key ID: 7385E7E464CB0A54

View File

@ -446,10 +446,6 @@ func (s *Strategy) processFilledOrder(o types.Order) {
profit = s.calculateProfit(o, newPrice, newQuantity) profit = s.calculateProfit(o, newPrice, newQuantity)
case types.SideTypeBuy: case types.SideTypeBuy:
if feeCurrency == s.Market.BaseCurrency {
newQuantity = newQuantity.Sub(feeQuantityReduction)
}
newSide = types.SideTypeSell newSide = types.SideTypeSell
if !s.ProfitSpread.IsZero() { if !s.ProfitSpread.IsZero() {
newPrice = newPrice.Add(s.ProfitSpread) newPrice = newPrice.Add(s.ProfitSpread)
@ -459,9 +455,19 @@ func (s *Strategy) processFilledOrder(o types.Order) {
} }
} }
if s.EarnBase { if feeCurrency == s.Market.QuoteCurrency {
newQuantity = fixedpoint.Max(orderExecutedQuoteAmount.Div(newPrice).Sub(feeQuantityReduction), s.Market.MinQuantity) orderExecutedQuoteAmount = orderExecutedQuoteAmount.Sub(feeQuantityReduction)
} }
if s.EarnBase {
newQuantity = orderExecutedQuoteAmount.Div(newPrice)
} else {
if feeCurrency == s.Market.BaseCurrency {
newQuantity = newQuantity.Sub(feeQuantityReduction)
}
}
newQuantity = fixedpoint.Max(newQuantity, s.Market.MinQuantity)
} }
orderForm := types.SubmitOrder{ orderForm := types.SubmitOrder{