mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
172 lines
5.3 KiB
Go
172 lines
5.3 KiB
Go
package xfunding
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
)
|
|
|
|
type FuturesTransfer interface {
|
|
TransferFuturesAccountAsset(ctx context.Context, asset string, amount fixedpoint.Value, io types.TransferDirection) error
|
|
QueryAccountBalances(ctx context.Context) (types.BalanceMap, error)
|
|
}
|
|
|
|
func (s *Strategy) resetTransfer(ctx context.Context, ex FuturesTransfer, asset string) error {
|
|
balances, err := s.futuresSession.Exchange.QueryAccountBalances(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
b, ok := balances[asset]
|
|
if !ok {
|
|
return nil
|
|
}
|
|
|
|
amount := b.MaxWithdrawAmount
|
|
if amount.IsZero() {
|
|
return nil
|
|
}
|
|
|
|
log.Infof("transfering out futures account asset %s %s", amount, asset)
|
|
|
|
err = ex.TransferFuturesAccountAsset(ctx, asset, amount, types.TransferOut)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
s.State.PendingBaseTransfer = fixedpoint.Zero
|
|
s.State.TotalBaseTransfer = fixedpoint.Zero
|
|
return nil
|
|
}
|
|
|
|
func (s *Strategy) transferOut(ctx context.Context, ex FuturesTransfer, asset string, quantity fixedpoint.Value) error {
|
|
// if transfer done
|
|
if s.State.TotalBaseTransfer.IsZero() {
|
|
return nil
|
|
}
|
|
|
|
balances, err := s.futuresSession.Exchange.QueryAccountBalances(ctx)
|
|
if err != nil {
|
|
log.Infof("balance query error, adding to pending base transfer: %s %s + %s", quantity.String(), asset, s.State.PendingBaseTransfer.String())
|
|
s.State.PendingBaseTransfer = s.State.PendingBaseTransfer.Add(quantity)
|
|
return err
|
|
}
|
|
|
|
b, ok := balances[asset]
|
|
if !ok {
|
|
log.Infof("balance not found, adding to pending base transfer: %s %s + %s", quantity.String(), asset, s.State.PendingBaseTransfer.String())
|
|
s.State.PendingBaseTransfer = s.State.PendingBaseTransfer.Add(quantity)
|
|
return fmt.Errorf("%s balance not found", asset)
|
|
}
|
|
|
|
log.Infof("found futures balance: %+v", b)
|
|
|
|
// add the previous pending base transfer and the current trade quantity
|
|
amount := b.MaxWithdrawAmount
|
|
if !quantity.IsZero() {
|
|
amount = s.State.PendingBaseTransfer.Add(quantity)
|
|
}
|
|
|
|
// try to transfer more if we enough balance
|
|
amount = fixedpoint.Min(amount, b.MaxWithdrawAmount)
|
|
|
|
// we can only transfer the rest quota (total base transfer)
|
|
amount = fixedpoint.Min(s.State.TotalBaseTransfer, amount)
|
|
|
|
// TODO: according to the fee, we might not be able to get enough balance greater than the trade quantity, we can adjust the quantity here
|
|
if amount.IsZero() {
|
|
log.Infof("zero amount, adding to pending base transfer: %s %s + %s ", quantity.String(), asset, s.State.PendingBaseTransfer.String())
|
|
s.State.PendingBaseTransfer = s.State.PendingBaseTransfer.Add(quantity)
|
|
return nil
|
|
}
|
|
|
|
// de-leverage and get the collateral base quantity
|
|
collateralBase := s.FuturesPosition.GetBase().Abs().Div(s.Leverage)
|
|
_ = collateralBase
|
|
|
|
// if s.State.TotalBaseTransfer.Compare(collateralBase)
|
|
|
|
log.Infof("transfering out futures account asset %s %s", amount, asset)
|
|
if err := ex.TransferFuturesAccountAsset(ctx, asset, amount, types.TransferOut); err != nil {
|
|
return err
|
|
}
|
|
|
|
// reset pending transfer
|
|
s.State.PendingBaseTransfer = fixedpoint.Zero
|
|
|
|
// reduce the transfer in the total base transfer
|
|
s.State.TotalBaseTransfer = s.State.TotalBaseTransfer.Sub(amount)
|
|
return nil
|
|
}
|
|
|
|
func (s *Strategy) queryAvailableTransfer(
|
|
ctx context.Context, ex types.Exchange, asset string, quantity fixedpoint.Value,
|
|
) (available, pending fixedpoint.Value, err error) {
|
|
available = fixedpoint.Zero
|
|
pending = fixedpoint.Zero
|
|
|
|
// query spot balances to validate the quantity
|
|
balances, err := ex.QueryAccountBalances(ctx)
|
|
if err != nil {
|
|
return available, pending, err
|
|
}
|
|
|
|
b, ok := balances[asset]
|
|
if !ok {
|
|
return available, pending, fmt.Errorf("%s balance not found", asset)
|
|
}
|
|
|
|
// if quantity = 0, we will transfer all available balance into the futures wallet
|
|
if quantity.IsZero() {
|
|
quantity = b.Available
|
|
}
|
|
|
|
if b.Available.Compare(quantity) < 0 {
|
|
log.Infof("%s available balance is not enough for transfer (%f < %f)",
|
|
asset,
|
|
b.Available.Float64(),
|
|
quantity.Float64())
|
|
|
|
available = fixedpoint.Min(b.Available, quantity)
|
|
pending = quantity.Sub(available)
|
|
log.Infof("adjusted transfer quantity from %f to %f", quantity.Float64(), available.Float64())
|
|
return available, pending, nil
|
|
}
|
|
|
|
available = quantity
|
|
pending = fixedpoint.Zero
|
|
return available, pending, nil
|
|
}
|
|
|
|
// transferIn transfers the asset from the spot account to the futures account
|
|
func (s *Strategy) transferIn(ctx context.Context, ex FuturesTransfer, asset string, quantity fixedpoint.Value) error {
|
|
s.mu.Lock()
|
|
defer s.mu.Unlock()
|
|
|
|
// add the pending transfer and reset the pending transfer
|
|
quantity = s.State.PendingBaseTransfer.Add(quantity)
|
|
|
|
available, pending, err := s.queryAvailableTransfer(ctx, s.spotSession.Exchange, asset, quantity)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
s.State.PendingBaseTransfer = pending
|
|
|
|
if available.IsZero() {
|
|
return fmt.Errorf("unable to transfer zero %s from spot wallet to futures wallet", asset)
|
|
}
|
|
|
|
log.Infof("transfering %f %s from the spot wallet into futures wallet...", available.Float64(), asset)
|
|
if err := ex.TransferFuturesAccountAsset(ctx, asset, available, types.TransferIn); err != nil {
|
|
s.State.PendingBaseTransfer = s.State.PendingBaseTransfer.Add(available)
|
|
return err
|
|
}
|
|
|
|
// record the transfer in the total base transfer
|
|
s.State.TotalBaseTransfer = s.State.TotalBaseTransfer.Add(available)
|
|
return nil
|
|
}
|