base

package
v0.0.0-...-6e61e22 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 7, 2018 License: MIT Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	TickerStaged    map[string]map[string]map[string]ticker.Price
	OrderbookStaged map[string]map[string]map[string]Orderbook
	PortfolioStaged Portfolio
	SettingsStaged  Settings
	ServiceStarted  time.Time
)

global vars contain staged update data that will be sent to the communication mediums

Functions

This section is empty.

Types

type Base

type Base struct {
	Name      string
	Enabled   bool
	Verbose   bool
	Connected bool
}

Base enforces standard variables across communication packages

func (*Base) GetName

func (b *Base) GetName() string

GetName returns a package name

func (*Base) GetOrderbook

func (b *Base) GetOrderbook(exchangeName string) string

GetOrderbook returns staged orderbook data

func (*Base) GetPortfolio

func (b *Base) GetPortfolio() string

GetPortfolio returns staged portfolio info

func (*Base) GetSettings

func (b *Base) GetSettings() string

GetSettings returns stage setting info

func (*Base) GetStatus

func (b *Base) GetStatus() string

GetStatus returns status data

func (*Base) GetTicker

func (b *Base) GetTicker(exchangeName string) string

GetTicker returns staged ticker data

func (*Base) IsConnected

func (b *Base) IsConnected() bool

IsConnected returns if the package is connected to a server and/or ready to send

func (*Base) IsEnabled

func (b *Base) IsEnabled() bool

IsEnabled returns if the comms package has been enabled in the configuration

type Event

type Event struct {
	Type         string
	GainLoss     string
	TradeDetails string
}

Event is a generalise event type

type IComm

type IComm []ICommunicate

IComm is the main interface array across the communication packages

func (IComm) GetEnabledCommunicationMediums

func (c IComm) GetEnabledCommunicationMediums()

GetEnabledCommunicationMediums prints out enabled and connected communication packages

func (IComm) PushEvent

func (c IComm) PushEvent(event Event)

PushEvent pushes triggered events to all enabled communication links

func (IComm) Setup

func (c IComm) Setup()

Setup sets up communication variables and intiates a connection to the communication mediums

func (IComm) StageOrderbookData

func (c IComm) StageOrderbookData(exchangeName, assetType string, orderbook orderbook.Base)

StageOrderbookData stages updated orderbook data for the communications package

func (IComm) StageTickerData

func (c IComm) StageTickerData(exchangeName, assetType string, tickerPrice ticker.Price)

StageTickerData stages updated ticker data for the communications package

type ICommunicate

type ICommunicate interface {
	Setup(config config.CommunicationsConfig)
	Connect() error
	PushEvent(Event) error
	IsEnabled() bool
	IsConnected() bool
	GetName() string
}

ICommunicate enforces standard functions across communication packages

type Orderbook

type Orderbook struct {
	CurrencyPair string
	AssetType    string
	TotalAsks    float64
	TotalBids    float64
	LastUpdated  string
}

Orderbook holds the minimal orderbook details to be sent to a communication medium

type Portfolio

type Portfolio struct {
	ProfitLoss string
}

Portfolio holds the minimal portfolio details to be sent to a communication medium

type Settings

type Settings struct {
	EnabledExchanges      string
	EnabledCommunications string
}

Settings holds the minimal setting details to be sent to a communication medium

type Ticker

type Ticker struct {
	CurrencyPair string
	LastUpdated  string
}

Ticker holds the minimal orderbook details to be sent to a communication medium

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL