Files
gocryptotrader/exchanges/support.go
Adrian Gallagher 74f4df6348 okcoin: Remove exchange implementation (#1626)
* okcoin: Remove exchange implementation

* exchanges/order: Rid TradeMode from Submit type
2024-08-24 12:19:04 +10:00

42 lines
627 B
Go

package exchange
import "strings"
// IsSupported returns whether or not a specific exchange is supported
func IsSupported(exchangeName string) bool {
for x := range Exchanges {
if strings.EqualFold(exchangeName, Exchanges[x]) {
return true
}
}
return false
}
// Exchanges stores a list of supported exchanges
var Exchanges = []string{
"binance",
"binanceus",
"bitfinex",
"bithumb",
"bitflyer",
"bitmex",
"bitstamp",
"btc markets",
"btse",
"bybit",
"coinbasepro",
"coinut",
"deribit",
"exmo",
"gateio",
"gemini",
"hitbtc",
"huobi",
"kraken",
"kucoin",
"lbank",
"okx",
"poloniex",
"yobit",
}