2023-08-04 17:59:36 +00:00
|
|
|
package tradingutil
|
|
|
|
|
|
|
|
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 fee, ok := fees[t.FeeCurrency]; ok {
|
|
|
|
fees[t.FeeCurrency] = fee.Add(t.Fee)
|
|
|
|
} else {
|
|
|
|
fees[t.FeeCurrency] = t.Fee
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return fees
|
|
|
|
}
|
2023-08-04 18:37:53 +00:00
|
|
|
|
|
|
|
func AggregateTradesQuantity(trades []types.Trade) fixedpoint.Value {
|
|
|
|
tq := fixedpoint.Zero
|
|
|
|
for _, t := range trades {
|
|
|
|
tq = tq.Add(t.Quantity)
|
|
|
|
}
|
|
|
|
return tq
|
|
|
|
}
|