mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-14 19:13:52 +00:00
26 lines
606 B
Go
26 lines
606 B
Go
package bitget
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/c9s/bbgo/pkg/exchange/bitget/bitgetapi"
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
)
|
|
|
|
func toGlobalSymbol(s string) string {
|
|
return strings.ToUpper(s)
|
|
}
|
|
|
|
func toGlobalBalance(asset bitgetapi.AccountAsset) types.Balance {
|
|
return types.Balance{
|
|
Currency: asset.CoinName,
|
|
Available: asset.Available,
|
|
Locked: asset.Lock.Add(asset.Frozen),
|
|
Borrowed: fixedpoint.Zero,
|
|
Interest: fixedpoint.Zero,
|
|
NetAsset: fixedpoint.Zero,
|
|
MaxWithdrawAmount: fixedpoint.Zero,
|
|
}
|
|
}
|