Files
gocryptotrader/exchanges/exchange.go
2017-03-29 13:45:02 +11:00

22 lines
541 B
Go

package exchange
import (
"time"
)
type ExchangeBase struct {
Name string
Enabled bool
Verbose bool
Websocket bool
RESTPollingDelay time.Duration
AuthenticatedAPISupport bool
APISecret, APIKey, ClientID string
TakerFee, MakerFee, Fee float64
BaseCurrencies []string
AvailablePairs []string
EnabledPairs []string
WebsocketURL string
APIUrl string
}