mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 23:16:45 +00:00
* Initial currency overhaul before service system implementation * Remove redundant currency string in orderbook.Base Unexport lastupdated field in orderbook.Base as it was being instantiated multiple times Add error handling for process orderbook * Remove redundant currency string in ticker.Price Unexport lastupdated field in ticker.Price Add error handling for process ticker function and fix tests * Phase Two Update * Update translations to use map type - thankyou to kempeng for spotting this * Change pair method name from Display -> Format for better readability * Fixes misspelling and tests * Implement requested changes from GloriousCode * Remove reduntant function and streamlined return in currency_translation.go * Revert pair method naming conventions * Change currency naming conventions * Changed code type to exported Item type with underlying string to reduce complexity * Added interim orderbook process method to orderbook.Base type * Changed feebuilder struct field to currency.Pair * Adds fall over system for backup fx providers * deprecate function and children and fix linter issue with btcmarkets * Fixed requested changes * Fix bug and move mtx for rates * Fixed after rebase oopsies * Fix linter issues * Fixes race conditions in testing functions * Final phase coinmarketcap update * fix linter issues * Implement requested changes * Adds configuration variables to increase/decrease time durations between updating currency file and fetching new currency rates * Add a collection of tests to improve codecov * After rebase oopsy fixes for btse * Fix requested changes * fix after rebase oopsies and add more efficient comparison checks within currency pair * Fix linter issues
159 lines
3.3 KiB
Go
159 lines
3.3 KiB
Go
package currency
|
|
|
|
import (
|
|
"math/rand"
|
|
|
|
"github.com/thrasher-/gocryptotrader/common"
|
|
)
|
|
|
|
// NewPairsFromStrings takes in currency pair strings and returns a currency
|
|
// pair list
|
|
func NewPairsFromStrings(pairs []string) Pairs {
|
|
var ps Pairs
|
|
for _, p := range pairs {
|
|
if p == "" {
|
|
continue
|
|
}
|
|
|
|
ps = append(ps, NewPairFromString(p))
|
|
}
|
|
return ps
|
|
}
|
|
|
|
// Pairs defines a list of pairs
|
|
type Pairs []Pair
|
|
|
|
// Strings returns a slice of strings referring to each currency pair
|
|
func (p Pairs) Strings() []string {
|
|
var list []string
|
|
for i := range p {
|
|
list = append(list, p[i].String())
|
|
}
|
|
return list
|
|
}
|
|
|
|
// Join returns a comma separated list of currency pairs
|
|
func (p Pairs) Join() string {
|
|
return common.JoinStrings(p.Strings(), ",")
|
|
}
|
|
|
|
// Format formats the pair list to the exchange format configuration
|
|
func (p Pairs) Format(delimiter, index string, uppercase bool) Pairs {
|
|
var pairs Pairs
|
|
for i := range p {
|
|
var formattedPair Pair
|
|
formattedPair.Delimiter = delimiter
|
|
formattedPair.Base = p[i].Base
|
|
formattedPair.Quote = p[i].Quote
|
|
|
|
if index != "" {
|
|
formattedPair.Quote = NewCode(index)
|
|
}
|
|
|
|
if uppercase {
|
|
pairs = append(pairs, formattedPair.Upper())
|
|
} else {
|
|
pairs = append(pairs, formattedPair)
|
|
}
|
|
}
|
|
return pairs
|
|
}
|
|
|
|
// UnmarshalJSON comforms type to the umarshaler interface
|
|
func (p *Pairs) UnmarshalJSON(d []byte) error {
|
|
var pairs string
|
|
err := common.JSONDecode(d, &pairs)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var allThePairs Pairs
|
|
for _, data := range common.SplitStrings(pairs, ",") {
|
|
allThePairs = append(allThePairs, NewPairFromString(data))
|
|
}
|
|
|
|
*p = allThePairs
|
|
return nil
|
|
}
|
|
|
|
// MarshalJSON conforms type to the marshaler interface
|
|
func (p Pairs) MarshalJSON() ([]byte, error) {
|
|
return common.JSONEncode(p.Join())
|
|
}
|
|
|
|
// Upper returns an upper formatted pair list
|
|
func (p Pairs) Upper() Pairs {
|
|
var upper Pairs
|
|
for i := range p {
|
|
upper = append(upper, p[i].Upper())
|
|
}
|
|
return upper
|
|
}
|
|
|
|
// Slice exposes the underlying type
|
|
func (p Pairs) Slice() []Pair {
|
|
return p
|
|
}
|
|
|
|
// Contains checks to see if a specified pair exists inside a currency pair
|
|
// array
|
|
func (p Pairs) Contains(check Pair, exact bool) bool {
|
|
for _, pair := range p.Slice() {
|
|
if exact {
|
|
if pair.Equal(check) {
|
|
return true
|
|
}
|
|
} else {
|
|
if pair.EqualIncludeReciprocal(check) {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// RemovePairsByFilter checks to see if a pair contains a specific currency
|
|
// and removes it from the list of pairs
|
|
func (p Pairs) RemovePairsByFilter(filter Code) Pairs {
|
|
var pairs Pairs
|
|
for _, pair := range p.Slice() {
|
|
if pair.ContainsCurrency(filter) {
|
|
continue
|
|
}
|
|
pairs = append(pairs, pair)
|
|
}
|
|
return pairs
|
|
}
|
|
|
|
// FindDifferences returns pairs which are new or have been removed
|
|
func (p Pairs) FindDifferences(pairs Pairs) (newPairs, removedPairs Pairs) {
|
|
for x := range pairs {
|
|
if pairs[x].String() == "" {
|
|
continue
|
|
}
|
|
if !p.Contains(pairs[x], true) {
|
|
newPairs = append(newPairs, pairs[x])
|
|
}
|
|
}
|
|
for _, oldPair := range p {
|
|
if oldPair.String() == "" {
|
|
continue
|
|
}
|
|
if !pairs.Contains(oldPair, true) {
|
|
removedPairs = append(removedPairs, oldPair)
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// GetRandomPair returns a random pair from a list of pairs
|
|
func (p Pairs) GetRandomPair() Pair {
|
|
pairsLen := len(p)
|
|
|
|
if pairsLen == 0 {
|
|
return Pair{Base: NewCode(""), Quote: NewCode("")}
|
|
}
|
|
|
|
return p[rand.Intn(pairsLen)]
|
|
}
|