Files
gocryptotrader/interfaces.go
Scott 244cdcb48c Adds new function to interface to retrieve all enabled currency data from exchange
Implements on alphapointhttp.go
Adds new page to UI to handle exchange balances
2016-09-05 21:57:23 +10:00

14 lines
344 B
Go

package main
//IBotExchange : Enforces standard functions for all exchanges supported in gocryptotrader
type IBotExchange interface {
Setup(exch Exchanges)
Start()
SetDefaults()
GetName() string
IsEnabled() bool
GetTickerPrice(currency string) TickerPrice
GetEnabledCurrencies() []string
GetExchangeAccountInfo() ExchangeAccountInfo
}