mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
46 lines
1.0 KiB
Go
46 lines
1.0 KiB
Go
package grid2
|
|
|
|
import (
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
)
|
|
|
|
// collectTradeFee collects the fee from the given trade slice
|
|
func collectTradeFee(trades []types.Trade) map[string]fixedpoint.Value {
|
|
fees := make(map[string]fixedpoint.Value)
|
|
for _, t := range trades {
|
|
if t.FeeDiscounted {
|
|
continue
|
|
}
|
|
|
|
if fee, ok := fees[t.FeeCurrency]; ok {
|
|
fees[t.FeeCurrency] = fee.Add(t.Fee)
|
|
} else {
|
|
fees[t.FeeCurrency] = t.Fee
|
|
}
|
|
}
|
|
return fees
|
|
}
|
|
|
|
func aggregateTradesQuantity(trades []types.Trade) fixedpoint.Value {
|
|
tq := fixedpoint.Zero
|
|
for _, t := range trades {
|
|
tq = tq.Add(t.Quantity)
|
|
}
|
|
return tq
|
|
}
|
|
|
|
// aggregateTradesQuoteQuantity aggregates the quote quantity from the given trade slice
|
|
func aggregateTradesQuoteQuantity(trades []types.Trade) fixedpoint.Value {
|
|
quoteQuantity := fixedpoint.Zero
|
|
for _, t := range trades {
|
|
if t.QuoteQuantity.IsZero() {
|
|
quoteQuantity = quoteQuantity.Add(t.Price.Mul(t.Quantity))
|
|
} else {
|
|
quoteQuantity = quoteQuantity.Add(t.QuoteQuantity)
|
|
}
|
|
}
|
|
|
|
return quoteQuantity
|
|
}
|