Add Ticker storage functionality for Exchanges (HTTP REST only)

This commit is contained in:
Adrian Gallagher
2017-02-20 10:38:04 +11:00
parent 3de08b76e4
commit e7148f174b
28 changed files with 456 additions and 326 deletions

View File

@@ -7,7 +7,7 @@ type IBotExchange interface {
SetDefaults()
GetName() string
IsEnabled() bool
GetTickerPrice(currency string) TickerPrice
GetTickerPrice(currency string) (TickerPrice, error)
GetEnabledCurrencies() []string
GetExchangeAccountInfo() (ExchangeAccountInfo, error)
}