bbgo_origin/pkg/strategy/xfunding/profitstats.go

55 lines
1.6 KiB
Go
Raw Normal View History

package xfunding
2023-03-25 17:54:39 +00:00
import (
"fmt"
2023-03-26 06:42:13 +00:00
"time"
2023-03-25 17:54:39 +00:00
"github.com/slack-go/slack"
2023-03-25 17:54:39 +00:00
"github.com/c9s/bbgo/pkg/fixedpoint"
"github.com/c9s/bbgo/pkg/style"
2023-03-25 17:54:39 +00:00
"github.com/c9s/bbgo/pkg/types"
)
type ProfitStats struct {
*types.ProfitStats
FundingFeeCurrency string `json:"fundingFeeCurrency"`
TotalFundingFee fixedpoint.Value `json:"totalFundingFee"`
FundingFeeRecords []FundingFee `json:"fundingFeeRecords"`
LastFundingFeeTxn int64 `json:"lastFundingFeeTxn"`
2023-03-26 06:42:13 +00:00
LastFundingFeeTime time.Time `json:"lastFundingFeeTime"`
2023-03-25 17:54:39 +00:00
}
func (s *ProfitStats) SlackAttachment() slack.Attachment {
var fields []slack.AttachmentField
var totalProfit = fmt.Sprintf("Total Funding Fee Profit: %s %s", style.PnLSignString(s.TotalFundingFee), s.FundingFeeCurrency)
return slack.Attachment{
Title: totalProfit,
Color: style.PnLColor(s.TotalFundingFee),
// Pretext: "",
// Text: text,
Fields: fields,
Footer: fmt.Sprintf("Last Funding Fee Transation ID: %d Last Funding Fee Time %s", s.LastFundingFeeTxn, s.LastFundingFeeTime.Format(time.RFC822)),
}
}
2023-03-25 17:54:39 +00:00
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
2023-03-26 06:42:13 +00:00
s.LastFundingFeeTime = fee.Time
2023-03-25 17:54:39 +00:00
return nil
}