Add basic support for COINUT exchange

This commit is contained in:
Adrian Gallagher
2017-06-27 17:03:04 +10:00
parent 3c53fe9419
commit 093def35e9
8 changed files with 748 additions and 5 deletions

View File

@@ -19,6 +19,7 @@ import (
"github.com/thrasher-/gocryptotrader/exchanges/btcc"
"github.com/thrasher-/gocryptotrader/exchanges/btce"
"github.com/thrasher-/gocryptotrader/exchanges/btcmarkets"
"github.com/thrasher-/gocryptotrader/exchanges/coinut"
"github.com/thrasher-/gocryptotrader/exchanges/gdax"
"github.com/thrasher-/gocryptotrader/exchanges/gemini"
"github.com/thrasher-/gocryptotrader/exchanges/huobi"
@@ -41,6 +42,7 @@ type ExchangeMain struct {
bitfinex bitfinex.Bitfinex
btce btce.BTCE
btcmarkets btcmarkets.BTCMarkets
coinut coinut.COINUT
gdax gdax.GDAX
gemini gemini.Gemini
okcoinChina okcoin.OKCoin
@@ -119,6 +121,7 @@ func main() {
new(bitfinex.Bitfinex),
new(btce.BTCE),
new(btcmarkets.BTCMarkets),
new(coinut.COINUT),
new(gdax.GDAX),
new(gemini.Gemini),
new(okcoin.OKCoin),