mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-16 07:26:47 +00:00
* currency: Add method to derive pair * currency: Add method to lower entire charset but used the slice copy and returned that. This will change the original, just gotta see if this is an issue, but the slice usually goes out of scope anyway. * currency/pairs: add filter method * currency: add function to derive select currencies from currency pairs * currency/engine: slight adjustments * currency: fix linter issue also shift burden of proof to caller instead of repair, more performant. * currency: more linter * pairs: optimize; reduce allocs/op and B/op * currency: Add in function 'NewPairsFromString' for testing purposes * currency: don't suppress error * currency: stop panic on empty currency code * currency: Add helper method to match currencies between exchanges * currency: fixed my bad spelling * currency: Implement stable coin checks, refactored base code methods, optimized upper and lower case strings for currency code/pairs * currency: add pairs method to derive stable coins from internal list. * Currency: Cleanup, fix tests. * engine/exchanges/currency: fix whoops * Currency: force govet no copy on Item datatype * Currency: fix naughty linter issues * exchange: revert change * currency/config: fix config upgrade mistake * currency: re-implement currency sub-systems * *RetrieveConfigCurrencyPairs removed *CheckCurrencyConfigValues to only provide warnings, add additional support when, disable when support is lost or not available and set default values. *Drop Cryptocurrencies from configuration as this is not needed. *Drop REST Poll delay field as this was unused. *Update default values for currencyFileUpdateDuration & foreignExchangeUpdateDuration. *Allow Role to be marshalled for file type. *Refactor RunUpdater to verify and check config values and set default running foreign exchange provider. * currency: cleanup * currency: change match -> equal for comparison which is more of a standard and little easier to find * currency: address nits * currency: fix whoops * currency: Add some more pairs methods * currency: linter issues * currency: RM unused field * currency: rm verbose * currency: fix word * currency: gocritic * currency: fix another whoopsie * example_config: default to show log system name * Currency: Force all support packages to use Equal method for comparison as there is a small comparison bug when checking upper and lower casing, this has a more of a pronounced impact between exchanges and client instances of currency generation * currency: fix log name * ordermanager: fix potential panic * currency: small optim. * engine: display correct bool and force shutdown * currency: add function and fix regression * Change ConvertCurrency -> ConvertFiat to be more precise * ADD GetForeignExchangeRate to get specific exchange rate for fiat pair * Fix currency display and formatting regression and tied in with config.Currency fields * engine: fix tests * currency: return the amount when no conversion needs to take place * currency: reduce method name * currency: Address nits glorious nits * currency: fix linter * currency: addr nits * currency: check underlying role in test * gct: change to EMPTYCODE and EMPTYPAIR across codebase * currency: fix nits * currency: this fixes test race but this issue has not been resolved. Please see: https://trello.com/c/54eizOIo/143-currency-package-upgrades * currency: Add temp dir for testing * Update engine/engine.go Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io> * documentation: update and regen * currency: Address niterinos * currency: Add test case for config upgrade when falling over to exchange rate host as default from exchangeRates provider * currency: addr nits * currency: fix whoops Co-authored-by: Ryan O'Hara-Reid <ryan.oharareid@thrasher.io> Co-authored-by: Adrian Gallagher <adrian.gallagher@thrasher.io>
134 lines
3.5 KiB
Go
134 lines
3.5 KiB
Go
package currency
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
// String returns a currency pair string
|
|
func (p Pair) String() string {
|
|
return p.Base.String() + p.Delimiter + p.Quote.String()
|
|
}
|
|
|
|
// Lower converts the pair object to lowercase
|
|
func (p Pair) Lower() Pair {
|
|
p.Base = p.Base.Lower()
|
|
p.Quote = p.Quote.Lower()
|
|
return p
|
|
}
|
|
|
|
// Upper converts the pair object to uppercase
|
|
func (p Pair) Upper() Pair {
|
|
p.Base = p.Base.Upper()
|
|
p.Quote = p.Quote.Upper()
|
|
return p
|
|
}
|
|
|
|
// UnmarshalJSON comforms type to the umarshaler interface
|
|
func (p *Pair) UnmarshalJSON(d []byte) error {
|
|
var pair string
|
|
err := json.Unmarshal(d, &pair)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
newPair, err := NewPairFromString(pair)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
*p = newPair
|
|
return nil
|
|
}
|
|
|
|
// MarshalJSON conforms type to the marshaler interface
|
|
func (p Pair) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(p.String())
|
|
}
|
|
|
|
// Format changes the currency based on user preferences overriding the default
|
|
// String() display
|
|
func (p Pair) Format(delimiter string, uppercase bool) Pair {
|
|
p.Delimiter = delimiter
|
|
if uppercase {
|
|
return p.Upper()
|
|
}
|
|
return p.Lower()
|
|
}
|
|
|
|
// Equal compares two currency pairs and returns whether or not they are equal
|
|
func (p Pair) Equal(cPair Pair) bool {
|
|
return p.Base.Equal(cPair.Base) && p.Quote.Equal(cPair.Quote)
|
|
}
|
|
|
|
// EqualIncludeReciprocal compares two currency pairs and returns whether or not
|
|
// they are the same including reciprocal currencies.
|
|
func (p Pair) EqualIncludeReciprocal(cPair Pair) bool {
|
|
return (p.Base.Equal(cPair.Base) && p.Quote.Equal(cPair.Quote)) ||
|
|
(p.Base.Equal(cPair.Quote) && p.Quote.Equal(cPair.Base))
|
|
}
|
|
|
|
// IsCryptoPair checks to see if the pair is a crypto pair e.g. BTCLTC
|
|
func (p Pair) IsCryptoPair() bool {
|
|
return p.Base.IsCryptocurrency() && p.Quote.IsCryptocurrency()
|
|
}
|
|
|
|
// IsCryptoFiatPair checks to see if the pair is a crypto fiat pair e.g. BTCUSD
|
|
func (p Pair) IsCryptoFiatPair() bool {
|
|
return (p.Base.IsCryptocurrency() && p.Quote.IsFiatCurrency()) ||
|
|
(p.Base.IsFiatCurrency() && p.Quote.IsCryptocurrency())
|
|
}
|
|
|
|
// IsFiatPair checks to see if the pair is a fiat pair e.g. EURUSD
|
|
func (p Pair) IsFiatPair() bool {
|
|
return p.Base.IsFiatCurrency() && p.Quote.IsFiatCurrency()
|
|
}
|
|
|
|
// IsCryptoStablePair checks to see if the pair is a crypto stable pair e.g.
|
|
// LTC-USDT
|
|
func (p Pair) IsCryptoStablePair() bool {
|
|
return (p.Base.IsCryptocurrency() && p.Quote.IsStableCurrency()) ||
|
|
(p.Base.IsStableCurrency() && p.Quote.IsCryptocurrency())
|
|
}
|
|
|
|
// IsStablePair checks to see if the pair is a stable pair e.g. USDT-DAI
|
|
func (p Pair) IsStablePair() bool {
|
|
return p.Base.IsStableCurrency() && p.Quote.IsStableCurrency()
|
|
}
|
|
|
|
// IsInvalid checks invalid pair if base and quote are the same
|
|
func (p Pair) IsInvalid() bool {
|
|
return p.Base.Equal(p.Quote)
|
|
}
|
|
|
|
// Swap turns the currency pair into its reciprocal
|
|
func (p Pair) Swap() Pair {
|
|
return Pair{Base: p.Quote, Quote: p.Base}
|
|
}
|
|
|
|
// IsEmpty returns whether or not the pair is empty or is missing a currency
|
|
// code
|
|
func (p Pair) IsEmpty() bool {
|
|
return p.Base.IsEmpty() && p.Quote.IsEmpty()
|
|
}
|
|
|
|
// Contains checks to see if a pair contains a specific currency
|
|
func (p Pair) Contains(c Code) bool {
|
|
return p.Base.Equal(c) || p.Quote.Equal(c)
|
|
}
|
|
|
|
// Len derives full length for match exclusion.
|
|
func (p Pair) Len() int {
|
|
return len(p.Base.String()) + len(p.Quote.String())
|
|
}
|
|
|
|
// Other returns the other currency from pair, if not matched returns empty code.
|
|
func (p Pair) Other(c Code) (Code, error) {
|
|
if p.Base.Equal(c) {
|
|
return p.Quote, nil
|
|
}
|
|
if p.Quote.Equal(c) {
|
|
return p.Base, nil
|
|
}
|
|
return EMPTYCODE, ErrCurrencyCodeEmpty
|
|
}
|