mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 01:23:51 +00:00
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
package xfunding
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
)
|
|
|
|
type FundingFee struct {
|
|
Asset string `json:"asset"`
|
|
Amount fixedpoint.Value `json:"amount"`
|
|
Txn int64 `json:"txn"`
|
|
Time time.Time `json:"time"`
|
|
}
|
|
|
|
type ProfitStats struct {
|
|
*types.ProfitStats
|
|
|
|
FundingFeeCurrency string `json:"fundingFeeCurrency"`
|
|
TotalFundingFee fixedpoint.Value `json:"totalFundingFee"`
|
|
FundingFeeRecords []FundingFee `json:"fundingFeeRecords"`
|
|
LastFundingFeeTxn int64 `json:"lastFundingFeeTxn"`
|
|
LastFundingFeeTime time.Time `json:"lastFundingFeeTime"`
|
|
}
|
|
|
|
func (s *ProfitStats) AddFundingFee(fee FundingFee) error {
|
|
if s.FundingFeeCurrency == "" {
|
|
s.FundingFeeCurrency = fee.Asset
|
|
} else if s.FundingFeeCurrency != fee.Asset {
|
|
return fmt.Errorf("unexpected error, funding fee currency is not matched, given: %s, wanted: %s", fee.Asset, s.FundingFeeCurrency)
|
|
}
|
|
|
|
if s.LastFundingFeeTxn == fee.Txn {
|
|
return errDuplicatedFundingFeeTxnId
|
|
}
|
|
|
|
s.FundingFeeRecords = append(s.FundingFeeRecords, fee)
|
|
s.TotalFundingFee = s.TotalFundingFee.Add(fee.Amount)
|
|
s.LastFundingFeeTxn = fee.Txn
|
|
s.LastFundingFeeTime = fee.Time
|
|
return nil
|
|
}
|