bbgo_origin/pkg/bbgo/position.go

106 lines
2.5 KiB
Go
Raw Normal View History

2021-01-20 08:08:14 +00:00
package bbgo
import (
"github.com/c9s/bbgo/pkg/fixedpoint"
"github.com/c9s/bbgo/pkg/types"
)
type Position struct {
Symbol string `json:"symbol"`
BaseCurrency string `json:"baseCurrency"`
QuoteCurrency string `json:"quoteCurrency"`
2021-01-20 08:15:34 +00:00
Base fixedpoint.Value `json:"base"`
Quote fixedpoint.Value `json:"quote"`
AverageCost fixedpoint.Value `json:"averageCost"`
2021-01-20 08:08:14 +00:00
}
func (p *Position) BindStream(stream types.Stream) {
stream.OnTradeUpdate(func(trade types.Trade) {
2021-01-20 09:37:23 +00:00
if p.Symbol == trade.Symbol {
p.AddTrade(trade)
}
})
}
func (p *Position) AddTrades(trades []types.Trade) (fixedpoint.Value, bool) {
var totalProfitAmount fixedpoint.Value
for _, trade := range trades {
if profitAmount, profit := p.AddTrade(trade); profit {
totalProfitAmount += profitAmount
}
}
return totalProfitAmount, totalProfitAmount != 0
}
2021-01-20 08:08:14 +00:00
func (p *Position) AddTrade(t types.Trade) (fixedpoint.Value, bool) {
price := fixedpoint.NewFromFloat(t.Price)
quantity := fixedpoint.NewFromFloat(t.Quantity)
2021-01-20 16:49:01 +00:00
quoteQuantity := fixedpoint.NewFromFloat(t.QuoteQuantity)
fee := fixedpoint.NewFromFloat(t.Fee)
switch t.FeeCurrency {
case p.BaseCurrency:
quantity -= fee
case p.QuoteCurrency:
quoteQuantity -= fee
}
2021-01-20 08:08:14 +00:00
// Base > 0 means we're in long position
// Base < 0 means we're in short position
2021-01-20 08:08:14 +00:00
switch t.Side {
case types.SideTypeBuy:
if p.Base < 0 {
// handling short-to-long position
if p.Base+quantity > 0 {
closingProfit := (p.AverageCost - price).Mul(-p.Base)
p.Base += quantity
2021-01-20 16:49:01 +00:00
p.Quote -= quoteQuantity
p.AverageCost = price
return closingProfit, true
} else {
// covering short position
p.Base += quantity
2021-01-20 16:49:01 +00:00
p.Quote -= quoteQuantity
return (p.AverageCost - price).Mul(quantity), true
}
}
2021-01-20 08:08:14 +00:00
2021-01-20 16:49:01 +00:00
p.AverageCost = (p.AverageCost.Mul(p.Base) + quoteQuantity).Div(p.Base + quantity)
2021-01-20 08:08:14 +00:00
p.Base += quantity
2021-01-20 16:49:01 +00:00
p.Quote -= quoteQuantity
2021-01-20 08:08:14 +00:00
return 0, false
case types.SideTypeSell:
if p.Base > 0 {
// long-to-short
if p.Base-quantity < 0 {
closingProfit := (price - p.AverageCost).Mul(p.Base)
p.Base -= quantity
2021-01-20 16:49:01 +00:00
p.Quote += quoteQuantity
p.AverageCost = price
return closingProfit, true
} else {
p.Base -= quantity
2021-01-20 16:49:01 +00:00
p.Quote += quoteQuantity
return (price - p.AverageCost).Mul(quantity), true
}
}
// handling short position
2021-01-20 16:49:01 +00:00
p.AverageCost = (p.AverageCost.Mul(-p.Base) + quoteQuantity).Div(-p.Base + quantity)
2021-01-20 08:08:14 +00:00
p.Base -= quantity
2021-01-20 16:49:01 +00:00
p.Quote += quoteQuantity
2021-01-20 08:08:14 +00:00
return 0, false
2021-01-20 08:08:14 +00:00
}
return 0, false
}