mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-30 07:26:46 +00:00
* implements futures functions and GRPC functions on new branch * lint and test fixes * Fix uneven split pnl. Adds collateral weight test. docs. New clear func * Test protection if someone has zero collateral * Uses string instead of double for accuracy * Fixes old code panic * context, match, docs * Addresses Shazniterinos, var names, expanded tests * Returns subaccount name, provides USD values when offlinecalc * Fixes oopsie * Fixes cool bug which allowed made up subaccount results * Subaccount override on FTX, subaccount results for collateral * Strenghten collateral account info checks. Improve FTX test * English is my first language * Fixes oopsies * Fixes for unrealised PNL & collateral rendering * Fixes lint and tests * Shaznit fixes * Secret Shaznit * Updates account information across wrappers to include more fields * Updates online collateral calculations. Updates RPC data * Accurately calculates collateral offline and online minus testing * Tests and lint chocolate * Simplifies accountinfo results * Fixes shaznits * Adds new func * Increases collateral accuracy again again again x 200 * Increases accuracy of collateral rendering * Fixes minor merge/test issues * Linterino * Fixes ws test. Improves collateral calculations and rendering * Make it prettier * Removes the lock I put on 👀 * Adds `additional_collateral_used` field, renders orig currency * Fixes unrelated test * Fix test * Correctly calculate spot margin borrow collateral * Address fun lint surprise See https://github.com/golangci/golangci-lint/issues/741#issuecomment-1017014331 * Strange lint fixing x2 * Continued lint journey * Nolint the nolint to not lint the lint * Adds two new fields to response * More linting issues arising * fIX3s_c4s|NG * Fixes command flags' incorrect numbering * FairMarket = Won
130 lines
2.8 KiB
Go
130 lines
2.8 KiB
Go
package asset
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
var (
|
|
// ErrNotSupported is an error for an unsupported asset type
|
|
ErrNotSupported = errors.New("received unsupported asset type")
|
|
)
|
|
|
|
// Item stores the asset type
|
|
type Item string
|
|
|
|
// Items stores a list of assets types
|
|
type Items []Item
|
|
|
|
// Const vars for asset package
|
|
const (
|
|
Spot = Item("spot")
|
|
Margin = Item("margin")
|
|
MarginFunding = Item("marginfunding")
|
|
Index = Item("index")
|
|
Binary = Item("binary")
|
|
PerpetualContract = Item("perpetualcontract")
|
|
PerpetualSwap = Item("perpetualswap")
|
|
Futures = Item("futures")
|
|
UpsideProfitContract = Item("upsideprofitcontract")
|
|
DownsideProfitContract = Item("downsideprofitcontract")
|
|
CoinMarginedFutures = Item("coinmarginedfutures")
|
|
USDTMarginedFutures = Item("usdtmarginedfutures")
|
|
)
|
|
|
|
var supported = Items{
|
|
Spot,
|
|
Margin,
|
|
MarginFunding,
|
|
Index,
|
|
Binary,
|
|
PerpetualContract,
|
|
PerpetualSwap,
|
|
Futures,
|
|
UpsideProfitContract,
|
|
DownsideProfitContract,
|
|
CoinMarginedFutures,
|
|
USDTMarginedFutures,
|
|
}
|
|
|
|
// Supported returns a list of supported asset types
|
|
func Supported() Items {
|
|
return supported
|
|
}
|
|
|
|
// returns an Item to string
|
|
func (a Item) String() string {
|
|
return string(a)
|
|
}
|
|
|
|
// Strings converts an asset type array to a string array
|
|
func (a Items) Strings() []string {
|
|
var assets []string
|
|
for x := range a {
|
|
assets = append(assets, string(a[x]))
|
|
}
|
|
return assets
|
|
}
|
|
|
|
// Contains returns whether or not the supplied asset exists
|
|
// in the list of Items
|
|
func (a Items) Contains(i Item) bool {
|
|
if !i.IsValid() {
|
|
return false
|
|
}
|
|
|
|
for x := range a {
|
|
if a[x].String() == i.String() {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// JoinToString joins an asset type array and converts it to a string
|
|
// with the supplied separator
|
|
func (a Items) JoinToString(separator string) string {
|
|
return strings.Join(a.Strings(), separator)
|
|
}
|
|
|
|
// IsValid returns whether or not the supplied asset type is valid or
|
|
// not
|
|
func (a Item) IsValid() bool {
|
|
for x := range supported {
|
|
if supported[x].String() == a.String() {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// New takes an input matches to relevant package assets
|
|
func New(input string) (Item, error) {
|
|
input = strings.ToLower(input)
|
|
for i := range supported {
|
|
if string(supported[i]) == input {
|
|
return supported[i], nil
|
|
}
|
|
}
|
|
return "", fmt.Errorf("%w %v, only supports %v",
|
|
ErrNotSupported,
|
|
input,
|
|
supported)
|
|
}
|
|
|
|
// UseDefault returns default asset type
|
|
func UseDefault() Item {
|
|
return Spot
|
|
}
|
|
|
|
// IsFutures checks if the asset type is a futures contract based asset
|
|
func (a Item) IsFutures() bool {
|
|
switch a {
|
|
case PerpetualContract, PerpetualSwap, Futures, UpsideProfitContract,
|
|
DownsideProfitContract, CoinMarginedFutures, USDTMarginedFutures:
|
|
return true
|
|
}
|
|
return false
|
|
}
|