mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 15:09:42 +00:00
Fixes issue: https://github.com/thrasher-/gocryptotrader/issues/131 Supersedes: https://github.com/thrasher-/gocryptotrader/pull/123
274 lines
8.4 KiB
Go
274 lines
8.4 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/thrasher-/gocryptotrader/currency/pair"
|
|
"github.com/thrasher-/gocryptotrader/currency"
|
|
"github.com/thrasher-/gocryptotrader/currency/symbol"
|
|
exchange "github.com/thrasher-/gocryptotrader/exchanges"
|
|
"github.com/thrasher-/gocryptotrader/exchanges/orderbook"
|
|
"github.com/thrasher-/gocryptotrader/exchanges/stats"
|
|
"github.com/thrasher-/gocryptotrader/exchanges/ticker"
|
|
)
|
|
|
|
func printCurrencyFormat(price float64) string {
|
|
displaySymbol, err := symbol.GetSymbolByCurrencyName(bot.config.Currency.FiatDisplayCurrency)
|
|
if err != nil {
|
|
log.Printf("Failed to get display symbol: %s", err)
|
|
}
|
|
|
|
return fmt.Sprintf("%s%.8f", displaySymbol, price)
|
|
}
|
|
|
|
func printConvertCurrencyFormat(origCurrency string, origPrice float64) string {
|
|
displayCurrency := bot.config.Currency.FiatDisplayCurrency
|
|
conv, err := currency.ConvertCurrency(origPrice, origCurrency, displayCurrency)
|
|
if err != nil {
|
|
log.Printf("Failed to convert currency: %s", err)
|
|
}
|
|
|
|
displaySymbol, err := symbol.GetSymbolByCurrencyName(displayCurrency)
|
|
if err != nil {
|
|
log.Printf("Failed to get display symbol: %s", err)
|
|
}
|
|
|
|
origSymbol, err := symbol.GetSymbolByCurrencyName(origCurrency)
|
|
if err != nil {
|
|
log.Printf("Failed to get original currency symbol: %s", err)
|
|
}
|
|
|
|
return fmt.Sprintf("%s%.2f %s (%s%.2f %s)",
|
|
displaySymbol,
|
|
conv,
|
|
displayCurrency,
|
|
origSymbol,
|
|
origPrice,
|
|
origCurrency,
|
|
)
|
|
}
|
|
|
|
func printTickerSummary(result ticker.Price, p pair.CurrencyPair, assetType, exchangeName string, err error) {
|
|
if err != nil {
|
|
log.Printf("Failed to get %s %s ticker. Error: %s",
|
|
p.Pair().String(),
|
|
exchangeName,
|
|
err)
|
|
return
|
|
}
|
|
|
|
stats.Add(exchangeName, p, assetType, result.Last, result.Volume)
|
|
if currency.IsFiatCurrency(p.SecondCurrency.String()) && p.SecondCurrency.String() != bot.config.Currency.FiatDisplayCurrency {
|
|
origCurrency := p.SecondCurrency.Upper().String()
|
|
log.Printf("%s %s %s: TICKER: Last %s Ask %s Bid %s High %s Low %s Volume %.8f",
|
|
exchangeName,
|
|
exchange.FormatCurrency(p).String(),
|
|
assetType,
|
|
printConvertCurrencyFormat(origCurrency, result.Last),
|
|
printConvertCurrencyFormat(origCurrency, result.Ask),
|
|
printConvertCurrencyFormat(origCurrency, result.Bid),
|
|
printConvertCurrencyFormat(origCurrency, result.High),
|
|
printConvertCurrencyFormat(origCurrency, result.Low),
|
|
result.Volume)
|
|
} else {
|
|
if currency.IsFiatCurrency(p.SecondCurrency.String()) && p.SecondCurrency.Upper().String() == bot.config.Currency.FiatDisplayCurrency {
|
|
log.Printf("%s %s %s: TICKER: Last %s Ask %s Bid %s High %s Low %s Volume %.8f",
|
|
exchangeName,
|
|
exchange.FormatCurrency(p).String(),
|
|
assetType,
|
|
printCurrencyFormat(result.Last),
|
|
printCurrencyFormat(result.Ask),
|
|
printCurrencyFormat(result.Bid),
|
|
printCurrencyFormat(result.High),
|
|
printCurrencyFormat(result.Low),
|
|
result.Volume)
|
|
} else {
|
|
log.Printf("%s %s %s: TICKER: Last %.8f Ask %.8f Bid %.8f High %.8f Low %.8f Volume %.8f",
|
|
exchangeName,
|
|
exchange.FormatCurrency(p).String(),
|
|
assetType,
|
|
result.Last,
|
|
result.Ask,
|
|
result.Bid,
|
|
result.High,
|
|
result.Low,
|
|
result.Volume)
|
|
}
|
|
}
|
|
}
|
|
|
|
func printOrderbookSummary(result orderbook.Base, p pair.CurrencyPair, assetType, exchangeName string, err error) {
|
|
if err != nil {
|
|
log.Printf("Failed to get %s %s orderbook. Error: %s",
|
|
p.Pair().String(),
|
|
exchangeName,
|
|
err)
|
|
return
|
|
}
|
|
bidsAmount, bidsValue := result.CalculateTotalBids()
|
|
asksAmount, asksValue := result.CalculateTotalAsks()
|
|
|
|
if currency.IsFiatCurrency(p.SecondCurrency.String()) && p.SecondCurrency.String() != bot.config.Currency.FiatDisplayCurrency {
|
|
origCurrency := p.SecondCurrency.Upper().String()
|
|
log.Printf("%s %s %s: ORDERBOOK: Bids len: %d Amount: %f %s. Total value: %s Asks len: %d Amount: %f %s. Total value: %s",
|
|
exchangeName,
|
|
exchange.FormatCurrency(p).String(),
|
|
assetType,
|
|
len(result.Bids),
|
|
bidsAmount,
|
|
p.FirstCurrency.String(),
|
|
printConvertCurrencyFormat(origCurrency, bidsValue),
|
|
len(result.Asks),
|
|
asksAmount,
|
|
p.FirstCurrency.String(),
|
|
printConvertCurrencyFormat(origCurrency, asksValue),
|
|
)
|
|
} else {
|
|
if currency.IsFiatCurrency(p.SecondCurrency.String()) && p.SecondCurrency.Upper().String() == bot.config.Currency.FiatDisplayCurrency {
|
|
log.Printf("%s %s %s: ORDERBOOK: Bids len: %d Amount: %f %s. Total value: %s Asks len: %d Amount: %f %s. Total value: %s",
|
|
exchangeName,
|
|
exchange.FormatCurrency(p).String(),
|
|
assetType,
|
|
len(result.Bids),
|
|
bidsAmount,
|
|
p.FirstCurrency.String(),
|
|
printCurrencyFormat(bidsValue),
|
|
len(result.Asks),
|
|
asksAmount,
|
|
p.FirstCurrency.String(),
|
|
printCurrencyFormat(asksValue),
|
|
)
|
|
} else {
|
|
log.Printf("%s %s %s: ORDERBOOK: Bids len: %d Amount: %f %s. Total value: %f Asks len: %d Amount: %f %s. Total value: %f",
|
|
exchangeName,
|
|
exchange.FormatCurrency(p).String(),
|
|
assetType,
|
|
len(result.Bids),
|
|
bidsAmount,
|
|
p.FirstCurrency.String(),
|
|
bidsValue,
|
|
len(result.Asks),
|
|
asksAmount,
|
|
p.FirstCurrency.String(),
|
|
asksValue,
|
|
)
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
func relayWebsocketEvent(result interface{}, event, assetType, exchangeName string) {
|
|
evt := WebsocketEvent{
|
|
Data: result,
|
|
Event: event,
|
|
AssetType: assetType,
|
|
Exchange: exchangeName,
|
|
}
|
|
err := BroadcastWebsocketMessage(evt)
|
|
if err != nil {
|
|
log.Println(fmt.Errorf("Failed to broadcast websocket event. Error: %s",
|
|
err))
|
|
}
|
|
}
|
|
|
|
// TickerUpdaterRoutine fetches and updates the ticker for all enabled
|
|
// currency pairs and exchanges
|
|
func TickerUpdaterRoutine() {
|
|
log.Println("Starting ticker updater routine.")
|
|
var wg sync.WaitGroup
|
|
for {
|
|
wg.Add(len(bot.exchanges))
|
|
for x := range bot.exchanges {
|
|
go func(x int, wg *sync.WaitGroup) {
|
|
defer wg.Done()
|
|
if bot.exchanges[x] == nil {
|
|
return
|
|
}
|
|
exchangeName := bot.exchanges[x].GetName()
|
|
enabledCurrencies := bot.exchanges[x].GetEnabledCurrencies()
|
|
supportsBatching := bot.exchanges[x].SupportsRESTTickerBatchUpdates()
|
|
assetTypes, err := exchange.GetExchangeAssetTypes(exchangeName)
|
|
if err != nil {
|
|
log.Printf("failed to get %s exchange asset types. Error: %s",
|
|
exchangeName, err)
|
|
return
|
|
}
|
|
|
|
processTicker := func(exch exchange.IBotExchange, update bool, c pair.CurrencyPair, assetType string) {
|
|
var result ticker.Price
|
|
var err error
|
|
if update {
|
|
result, err = exch.UpdateTicker(c, assetType)
|
|
} else {
|
|
result, err = exch.GetTickerPrice(c, assetType)
|
|
}
|
|
printTickerSummary(result, c, assetType, exchangeName, err)
|
|
if bot.config.Webserver.Enabled && err == nil {
|
|
relayWebsocketEvent(result, "ticker_update", assetType, exchangeName)
|
|
}
|
|
}
|
|
|
|
for y := range assetTypes {
|
|
for z := range enabledCurrencies {
|
|
if supportsBatching && z > 0 {
|
|
processTicker(bot.exchanges[x], false, enabledCurrencies[z], assetTypes[y])
|
|
continue
|
|
}
|
|
processTicker(bot.exchanges[x], true, enabledCurrencies[z], assetTypes[y])
|
|
}
|
|
}
|
|
}(x, &wg)
|
|
}
|
|
wg.Wait()
|
|
log.Println("All enabled currency tickers fetched.")
|
|
time.Sleep(time.Second * 10)
|
|
}
|
|
}
|
|
|
|
// OrderbookUpdaterRoutine fetches and updates the orderbooks for all enabled
|
|
// currency pairs and exchanges
|
|
func OrderbookUpdaterRoutine() {
|
|
log.Println("Starting orderbook updater routine.")
|
|
var wg sync.WaitGroup
|
|
for {
|
|
wg.Add(len(bot.exchanges))
|
|
for x := range bot.exchanges {
|
|
go func(x int, wg *sync.WaitGroup) {
|
|
defer wg.Done()
|
|
|
|
if bot.exchanges[x] == nil {
|
|
return
|
|
}
|
|
exchangeName := bot.exchanges[x].GetName()
|
|
enabledCurrencies := bot.exchanges[x].GetEnabledCurrencies()
|
|
assetTypes, err := exchange.GetExchangeAssetTypes(exchangeName)
|
|
if err != nil {
|
|
log.Printf("failed to get %s exchange asset types. Error: %s",
|
|
exchangeName, err)
|
|
return
|
|
}
|
|
|
|
processOrderbook := func(exch exchange.IBotExchange, c pair.CurrencyPair, assetType string) {
|
|
result, err := exch.UpdateOrderbook(c, assetType)
|
|
printOrderbookSummary(result, c, assetType, exchangeName, err)
|
|
if bot.config.Webserver.Enabled && err == nil {
|
|
relayWebsocketEvent(result, "orderbook_update", assetType, exchangeName)
|
|
}
|
|
}
|
|
|
|
for y := range assetTypes {
|
|
for z := range enabledCurrencies {
|
|
processOrderbook(bot.exchanges[x], enabledCurrencies[z], assetTypes[y])
|
|
}
|
|
}
|
|
}(x, &wg)
|
|
}
|
|
wg.Wait()
|
|
log.Println("All enabled currency orderbooks fetched.")
|
|
time.Sleep(time.Second * 10)
|
|
}
|
|
}
|