mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-14 07:26:47 +00:00
* asset: basic optim. bitmask * glorious: nits * currency: forgot parralel in testttttt * ticker/orderbook: test fixes * engine/rpcserver: fix and expand tests
156 lines
3.5 KiB
Go
156 lines
3.5 KiB
Go
package stats
|
|
|
|
import (
|
|
"errors"
|
|
"sort"
|
|
|
|
"github.com/thrasher-corp/gocryptotrader/currency"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/asset"
|
|
)
|
|
|
|
// Item holds various fields for storing currency pair stats
|
|
type Item struct {
|
|
Exchange string
|
|
Pair currency.Pair
|
|
AssetType asset.Item
|
|
Price float64
|
|
Volume float64
|
|
}
|
|
|
|
// Items var array
|
|
var Items []Item
|
|
|
|
// ByPrice allows sorting by price
|
|
type ByPrice []Item
|
|
|
|
func (b ByPrice) Len() int {
|
|
return len(b)
|
|
}
|
|
|
|
func (b ByPrice) Less(i, j int) bool {
|
|
return b[i].Price < b[j].Price
|
|
}
|
|
|
|
func (b ByPrice) Swap(i, j int) {
|
|
b[i], b[j] = b[j], b[i]
|
|
}
|
|
|
|
// ByVolume allows sorting by volume
|
|
type ByVolume []Item
|
|
|
|
func (b ByVolume) Len() int {
|
|
return len(b)
|
|
}
|
|
|
|
func (b ByVolume) Less(i, j int) bool {
|
|
return b[i].Volume < b[j].Volume
|
|
}
|
|
|
|
func (b ByVolume) Swap(i, j int) {
|
|
b[i], b[j] = b[j], b[i]
|
|
}
|
|
|
|
// Add adds or updates the item stats
|
|
func Add(exchange string, p currency.Pair, a asset.Item, price, volume float64) error {
|
|
if exchange == "" ||
|
|
a == asset.Empty ||
|
|
price == 0 ||
|
|
volume == 0 ||
|
|
p.Base.IsEmpty() ||
|
|
p.Quote.IsEmpty() {
|
|
return errors.New("cannot add or update, invalid params")
|
|
}
|
|
|
|
if p.Base.Equal(currency.XBT) {
|
|
newPair, err := currency.NewPairFromStrings(currency.BTC.String(),
|
|
p.Quote.String())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
Append(exchange, newPair, a, price, volume)
|
|
}
|
|
|
|
if p.Quote.Equal(currency.USDT) {
|
|
newPair, err := currency.NewPairFromStrings(p.Base.String(), currency.USD.String())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
Append(exchange, newPair, a, price, volume)
|
|
}
|
|
|
|
Append(exchange, p, a, price, volume)
|
|
return nil
|
|
}
|
|
|
|
// Append adds or updates the item stats for a specific
|
|
// currency pair and asset type
|
|
func Append(exchange string, p currency.Pair, a asset.Item, price, volume float64) {
|
|
if AlreadyExists(exchange, p, a, price, volume) {
|
|
return
|
|
}
|
|
|
|
i := Item{
|
|
Exchange: exchange,
|
|
Pair: p,
|
|
AssetType: a,
|
|
Price: price,
|
|
Volume: volume,
|
|
}
|
|
|
|
Items = append(Items, i)
|
|
}
|
|
|
|
// AlreadyExists checks to see if item info already exists
|
|
// for a specific currency pair and asset type
|
|
func AlreadyExists(exchange string, p currency.Pair, assetType asset.Item, price, volume float64) bool {
|
|
for i := range Items {
|
|
if Items[i].Exchange == exchange &&
|
|
Items[i].Pair.EqualIncludeReciprocal(p) &&
|
|
Items[i].AssetType == assetType {
|
|
Items[i].Price, Items[i].Volume = price, volume
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// SortExchangesByVolume sorts item info by volume for a specific
|
|
// currency pair and asset type. Reverse will reverse the order from lowest to
|
|
// highest
|
|
func SortExchangesByVolume(p currency.Pair, assetType asset.Item, reverse bool) []Item {
|
|
var result []Item
|
|
for x := range Items {
|
|
if Items[x].Pair.EqualIncludeReciprocal(p) &&
|
|
Items[x].AssetType == assetType {
|
|
result = append(result, Items[x])
|
|
}
|
|
}
|
|
|
|
if reverse {
|
|
sort.Sort(sort.Reverse(ByVolume(result)))
|
|
} else {
|
|
sort.Sort(ByVolume(result))
|
|
}
|
|
return result
|
|
}
|
|
|
|
// SortExchangesByPrice sorts item info by volume for a specific
|
|
// currency pair and asset type. Reverse will reverse the order from lowest to
|
|
// highest
|
|
func SortExchangesByPrice(p currency.Pair, assetType asset.Item, reverse bool) []Item {
|
|
var result []Item
|
|
for x := range Items {
|
|
if Items[x].Pair.EqualIncludeReciprocal(p) &&
|
|
Items[x].AssetType == assetType {
|
|
result = append(result, Items[x])
|
|
}
|
|
}
|
|
|
|
if reverse {
|
|
sort.Sort(sort.Reverse(ByPrice(result)))
|
|
} else {
|
|
sort.Sort(ByPrice(result))
|
|
}
|
|
return result
|
|
}
|