bitflyer

package
v0.0.0-...-eb07c7e Latest Latest
Warning

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

Go to latest
Published: Jul 19, 2019 License: MIT Imports: 15 Imported by: 0

README

GoCryptoTrader package Bitflyer

Build Status Software License GoDoc Coverage Status Go Report Card

This bitflyer package is part of the GoCryptoTrader codebase.

This is still in active development

You can track ideas, planned features and what's in progresss on this Trello board: https://trello.com/b/ZAhMhpOy/gocryptotrader.

Join our slack to discuss all things related to GoCryptoTrader! GoCryptoTrader Slack

Bitflyer Exchange

Current Features
  • REST Support
How to enable
  // Exchanges will be abstracted out in further updates and examples will be
  // supplied then
How to do REST public/private calls
  • If enabled via "configuration".json file the exchange will be added to the IBotExchange array in the go var bot Bot and you will only be able to use the wrapper interface functions for accessing exchange data. View routines.go for an example of integration usage with GoCryptoTrader. Rudimentary example below:

main.go

var b exchange.IBotExchange

for i := range bot.exchanges {
  if bot.exchanges[i].GetName() == "Bitflyer" {
    b = bot.exchanges[i]
  }
}

// Public calls - wrapper functions

// Fetches current ticker information
tick, err := b.GetTickerPrice()
if err != nil {
  // Handle error
}

// Fetches current orderbook information
ob, err := b.GetOrderbookEx()
if err != nil {
  // Handle error
}

// Private calls - wrapper functions - make sure your APIKEY and APISECRET are
// set and AuthenticatedAPISupport is set to true

// Fetches current account information
accountInfo, err := b.GetAccountInfo()
if err != nil {
  // Handle error
}
  • If enabled via individually importing package, rudimentary example below:
// Public calls

// Fetches current ticker information
ticker, err := b.GetTicker()
if err != nil {
  // Handle error
}

// Fetches current orderbook information
ob, err := b.GetOrderBook()
if err != nil {
  // Handle error
}

// Private calls - make sure your APIKEY and APISECRET are set and
// AuthenticatedAPISupport is set to true

// GetUserInfo returns account info
accountInfo, err := b.GetUserInfo(...)
if err != nil {
  // Handle error
}

// Submits an order and the exchange and returns its tradeID
tradeID, err := b.Trade(...)
if err != nil {
  // Handle error
}
How to do Websocket public/private calls
  // Exchanges will be abstracted out in further updates and examples will be
  // supplied then
Please click GoDocs chevron above to view current GoDoc information for this package

Contribution

Please feel free to submit any pull requests or suggest any desired features to be added.

When submitting a PR, please abide by our coding guidelines:

  • Code must adhere to the official Go formatting guidelines (i.e. uses gofmt).
  • Code must be documented adhering to the official Go commentary guidelines.
  • Code must adhere to our coding style.
  • Pull requests need to be based on and opened against the master branch.

Donations

If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to:

1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AccountBalance

type AccountBalance struct {
	CurrencyCode string  `json:"currency_code"`
	Amount       float64 `json:"amount"`
	Available    float64 `json:"available"`
}

AccountBalance holds account balance information

type BankAccount

type BankAccount struct {
	ID            int64  `json:"id"`
	IsVerified    bool   `json:"is_verified"`
	BankName      string `json:"bank_name"`
	BranchName    string `json:"branch_name"`
	AccountType   string `json:"account_type"`
	AccountNumber int    `json:"account_number"`
	AccountName   string `json:"account_name"`
}

BankAccount holds bank account information

type Bitflyer

type Bitflyer struct {
	exchange.Base
}

Bitflyer is the overarching type across this package

func (*Bitflyer) AuthenticateWebsocket

func (b *Bitflyer) AuthenticateWebsocket() error

AuthenticateWebsocket sends an authentication message to the websocket

func (*Bitflyer) CancelAllExistingOrders

func (b *Bitflyer) CancelAllExistingOrders()

CancelAllExistingOrders cancels all orders on the exchange

func (*Bitflyer) CancelAllOrders

CancelAllOrders cancels all orders associated with a currency pair

func (*Bitflyer) CancelExistingOrder

func (b *Bitflyer) CancelExistingOrder()

CancelExistingOrder cancels an order

func (*Bitflyer) CancelOrder

func (b *Bitflyer) CancelOrder(order *exchange.OrderCancellation) error

CancelOrder cancels an order by its corresponding ID number

func (*Bitflyer) CancelParentOrder

func (b *Bitflyer) CancelParentOrder()

CancelParentOrder cancels a special order

func (*Bitflyer) CheckFXString

func (b *Bitflyer) CheckFXString(p currency.Pair) currency.Pair

CheckFXString upgrades currency pair if needed

func (*Bitflyer) GetAccountBalance

func (b *Bitflyer) GetAccountBalance()

GetAccountBalance returnsthe full list of account funds

func (*Bitflyer) GetAccountInfo

func (b *Bitflyer) GetAccountInfo() (exchange.AccountInfo, error)

GetAccountInfo retrieves balances for all enabled currencies on the Bitflyer exchange

func (*Bitflyer) GetActiveOrders

func (b *Bitflyer) GetActiveOrders(getOrdersRequest *exchange.GetOrdersRequest) ([]exchange.OrderDetail, error)

GetActiveOrders retrieves any orders that are active/open

func (*Bitflyer) GetAddressInfoCA

func (b *Bitflyer) GetAddressInfoCA(addressln string) (ChainAnalysisAddress, error)

GetAddressInfoCA returns balance information for address by addressln string from bitflyer chain analysis system

func (*Bitflyer) GetAllOrders

func (b *Bitflyer) GetAllOrders()

GetAllOrders returns a list of all orders

func (*Bitflyer) GetBankAccSummary

func (b *Bitflyer) GetBankAccSummary()

GetBankAccSummary returns a full list of bank accounts assoc. with your keys

func (*Bitflyer) GetBlockCA

func (b *Bitflyer) GetBlockCA(blockhash string) (ChainAnalysisBlock, error)

GetBlockCA returns block information by blockhash from bitflyer chain analysis system

func (*Bitflyer) GetBlockbyHeightCA

func (b *Bitflyer) GetBlockbyHeightCA(height int64) (ChainAnalysisBlock, error)

GetBlockbyHeightCA returns the block information by height from bitflyer chain analysis system

func (*Bitflyer) GetCashDeposits

func (b *Bitflyer) GetCashDeposits()

GetCashDeposits returns a full list of cash deposits to the exchange

func (*Bitflyer) GetChats

func (b *Bitflyer) GetChats(fromDate string) ([]ChatLog, error)

GetChats returns trollbox chat log Note: returns vary from instant to infinty

func (*Bitflyer) GetCollateralAccounts

func (b *Bitflyer) GetCollateralAccounts()

GetCollateralAccounts returns a full list of collateralised accounts

func (*Bitflyer) GetCryptoDepositAddress

func (b *Bitflyer) GetCryptoDepositAddress()

GetCryptoDepositAddress returns an address for cryptocurrency deposits

func (*Bitflyer) GetDepositAddress

func (b *Bitflyer) GetDepositAddress(cryptocurrency currency.Code, accountID string) (string, error)

GetDepositAddress returns a deposit address for a specified currency

func (*Bitflyer) GetDepositCancellationHistory

func (b *Bitflyer) GetDepositCancellationHistory()

GetDepositCancellationHistory returns the cancellation history of deposits

func (*Bitflyer) GetDepositHistory

func (b *Bitflyer) GetDepositHistory()

GetDepositHistory returns a full history of deposits

func (*Bitflyer) GetExchangeHistory

func (b *Bitflyer) GetExchangeHistory(p currency.Pair, assetType string) ([]exchange.TradeHistory, error)

GetExchangeHistory returns historic trade data since exchange opening.

func (*Bitflyer) GetExchangeStatus

func (b *Bitflyer) GetExchangeStatus() (string, error)

GetExchangeStatus returns exchange status information

func (*Bitflyer) GetExecutionHistory

func (b *Bitflyer) GetExecutionHistory(symbol string) ([]ExecutedTrade, error)

GetExecutionHistory returns past trades that were executed on the market

func (*Bitflyer) GetExecutions

func (b *Bitflyer) GetExecutions()

GetExecutions returns execution details

func (*Bitflyer) GetFee

func (b *Bitflyer) GetFee(feeBuilder *exchange.FeeBuilder) (float64, error)

GetFee returns an estimate of fee based on type of transaction TODO: Figure out the weird fee structure. Do we use Bitcoin Easy Exchange,Lightning Spot,Bitcoin Market,Lightning FX/Futures ???

func (*Bitflyer) GetFeeByType

func (b *Bitflyer) GetFeeByType(feeBuilder *exchange.FeeBuilder) (float64, error)

GetFeeByType returns an estimate of fee based on the type of transaction

func (*Bitflyer) GetFundingHistory

func (b *Bitflyer) GetFundingHistory() ([]exchange.FundHistory, error)

GetFundingHistory returns funding history, deposits and withdrawals

func (*Bitflyer) GetLatestBlockCA

func (b *Bitflyer) GetLatestBlockCA() (ChainAnalysisBlock, error)

GetLatestBlockCA returns the latest block information from bitflyer chain analysis system

func (*Bitflyer) GetMarginChange

func (b *Bitflyer) GetMarginChange()

GetMarginChange returns collateral history

func (*Bitflyer) GetMarginStatus

func (b *Bitflyer) GetMarginStatus()

GetMarginStatus returns current margin status

func (*Bitflyer) GetMarkets

func (b *Bitflyer) GetMarkets() ([]MarketInfo, error)

GetMarkets returns market information

func (*Bitflyer) GetOpenInterest

func (b *Bitflyer) GetOpenInterest()

GetOpenInterest returns a summary of open interest

func (*Bitflyer) GetOrderBook

func (b *Bitflyer) GetOrderBook(symbol string) (Orderbook, error)

GetOrderBook returns market orderbook depth

func (*Bitflyer) GetOrderHistory

func (b *Bitflyer) GetOrderHistory(getOrdersRequest *exchange.GetOrdersRequest) ([]exchange.OrderDetail, error)

GetOrderHistory retrieves account order information Can Limit response to specific order status

func (*Bitflyer) GetOrderInfo

func (b *Bitflyer) GetOrderInfo(orderID string) (exchange.OrderDetail, error)

GetOrderInfo returns information on a current open order

func (*Bitflyer) GetOrderbookEx

func (b *Bitflyer) GetOrderbookEx(p currency.Pair, assetType string) (orderbook.Base, error)

GetOrderbookEx returns the orderbook for a currency pair

func (*Bitflyer) GetParentOrderDetails

func (b *Bitflyer) GetParentOrderDetails()

GetParentOrderDetails returns a detailing of a parent order

func (*Bitflyer) GetParentOrders

func (b *Bitflyer) GetParentOrders()

GetParentOrders returns a list of all parent orders

func (*Bitflyer) GetPermissions

func (b *Bitflyer) GetPermissions()

GetPermissions returns current permissions for associated with your API keys

func (*Bitflyer) GetSubscriptions

func (b *Bitflyer) GetSubscriptions() ([]exchange.WebsocketChannelSubscription, error)

GetSubscriptions returns a copied list of subscriptions

func (*Bitflyer) GetTicker

func (b *Bitflyer) GetTicker(symbol string) (Ticker, error)

GetTicker returns ticker information

func (*Bitflyer) GetTickerPrice

func (b *Bitflyer) GetTickerPrice(p currency.Pair, assetType string) (ticker.Price, error)

GetTickerPrice returns the ticker for a currency pair

func (*Bitflyer) GetTradingCommission

func (b *Bitflyer) GetTradingCommission()

GetTradingCommission returns trading commission

func (*Bitflyer) GetTransactionByHashCA

func (b *Bitflyer) GetTransactionByHashCA(txHash string) (ChainAnalysisTransaction, error)

GetTransactionByHashCA returns transaction information by txHash from bitflyer chain analysis system

func (*Bitflyer) GetTransactionHistory

func (b *Bitflyer) GetTransactionHistory()

GetTransactionHistory returns a full history of transactions

func (*Bitflyer) GetWebsocket

func (b *Bitflyer) GetWebsocket() (*exchange.Websocket, error)

GetWebsocket returns a pointer to the exchange websocket

func (*Bitflyer) ModifyOrder

func (b *Bitflyer) ModifyOrder(action *exchange.ModifyOrder) (string, error)

ModifyOrder will allow of changing orderbook placement and limit to market conversion

func (*Bitflyer) Run

func (b *Bitflyer) Run()

Run implements the Bitflyer wrapper

func (*Bitflyer) SendAuthHTTPRequest

func (b *Bitflyer) SendAuthHTTPRequest()

SendAuthHTTPRequest sends an authenticated HTTP request Note: HTTP not done due to incorrect account privileges, please open a PR if you have access and update the authenticated requests TODO: Fill out this function once API access is obtained

func (*Bitflyer) SendHTTPRequest

func (b *Bitflyer) SendHTTPRequest(path string, result interface{}) error

SendHTTPRequest sends an unauthenticated request

func (*Bitflyer) SendOrder

func (b *Bitflyer) SendOrder()

SendOrder creates new order

func (*Bitflyer) SendParentOrder

func (b *Bitflyer) SendParentOrder()

SendParentOrder sends a special order

func (*Bitflyer) SetDefaults

func (b *Bitflyer) SetDefaults()

SetDefaults sets the basic defaults for Bitflyer

func (*Bitflyer) Setup

func (b *Bitflyer) Setup(exch *config.ExchangeConfig)

Setup takes in the supplied exchange configuration details and sets params

func (*Bitflyer) Start

func (b *Bitflyer) Start(wg *sync.WaitGroup)

Start starts the Bitflyer go routine

func (*Bitflyer) SubmitOrder

func (b *Bitflyer) SubmitOrder(p currency.Pair, side exchange.OrderSide, orderType exchange.OrderType, amount, price float64, clientID string) (exchange.SubmitOrderResponse, error)

SubmitOrder submits a new order

func (*Bitflyer) SubscribeToWebsocketChannels

func (b *Bitflyer) SubscribeToWebsocketChannels(channels []exchange.WebsocketChannelSubscription) error

SubscribeToWebsocketChannels appends to ChannelsToSubscribe which lets websocket.manageSubscriptions handle subscribing

func (*Bitflyer) UnsubscribeToWebsocketChannels

func (b *Bitflyer) UnsubscribeToWebsocketChannels(channels []exchange.WebsocketChannelSubscription) error

UnsubscribeToWebsocketChannels removes from ChannelsToSubscribe which lets websocket.manageSubscriptions handle unsubscribing

func (*Bitflyer) UpdateOrderbook

func (b *Bitflyer) UpdateOrderbook(p currency.Pair, assetType string) (orderbook.Base, error)

UpdateOrderbook updates and returns the orderbook for a currency pair

func (*Bitflyer) UpdateTicker

func (b *Bitflyer) UpdateTicker(p currency.Pair, assetType string) (ticker.Price, error)

UpdateTicker updates and returns the ticker for a currency pair

func (*Bitflyer) WithdrawCryptocurrencyFunds

func (b *Bitflyer) WithdrawCryptocurrencyFunds(withdrawRequest *exchange.WithdrawRequest) (string, error)

WithdrawCryptocurrencyFunds returns a withdrawal ID when a withdrawal is submitted

func (*Bitflyer) WithdrawFiatFunds

func (b *Bitflyer) WithdrawFiatFunds(withdrawRequest *exchange.WithdrawRequest) (string, error)

WithdrawFiatFunds returns a withdrawal ID when a withdrawal is submitted

func (*Bitflyer) WithdrawFiatFundsToInternationalBank

func (b *Bitflyer) WithdrawFiatFundsToInternationalBank(withdrawRequest *exchange.WithdrawRequest) (string, error)

WithdrawFiatFundsToInternationalBank returns a withdrawal ID when a withdrawal is submitted

func (*Bitflyer) WithdrawFunds

func (b *Bitflyer) WithdrawFunds()

WithdrawFunds withdraws funds to a certain bank

type CancellationHistory

type CancellationHistory struct {
	ID           int64   `json:"id"`
	OrderID      string  `json:"order_id"`
	CurrencyCode string  `json:"currency_code"`
	Amount       float64 `json:"amount"`
	Status       string  `json:"status"`
	EventDate    string  `json:"event_date"`
}

CancellationHistory cancellation history

type CashDeposit

type CashDeposit struct {
	ID           int64   `json:"id"`
	OrderID      string  `json:"order_id"`
	CurrencyCode string  `json:"currency_code"`
	Amount       float64 `json:"amount"`
	Status       string  `json:"status"`
	EventDate    string  `json:"event_date"`
}

CashDeposit holds cash deposit information

type ChainAnalysisAddress

type ChainAnalysisAddress struct {
	Address            string  `json:"address"`
	UnconfirmedBalance float64 `json:"unconfirmed_balance"`
	ConfirmedBalance   float64 `json:"confirmed_balance"`
}

ChainAnalysisAddress holds address information from the bitcoin network

type ChainAnalysisBlock

type ChainAnalysisBlock struct {
	BlockHash     string   `json:"block_hash"`
	Height        int64    `json:"height"`
	IsMain        bool     `json:"is_main"`
	Version       float64  `json:"version"`
	PreviousBlock string   `json:"prev_block"`
	MerkleRoot    string   `json:"merkle_root"`
	Timestamp     string   `json:"timestamp"`
	Bits          int64    `json:"bits"`
	Nonce         int64    `json:"nonce"`
	TxNum         int64    `json:"txnum"`
	TotalFees     float64  `json:"total_fees"`
	TxHashes      []string `json:"tx_hashes"`
}

ChainAnalysisBlock holds block information from the bitcoin network

type ChainAnalysisTransaction

type ChainAnalysisTransaction struct {
	TxHash        string  `json:"tx_hash"`
	BlockHeight   int64   `json:"block_height"`
	Confirmations int64   `json:"confirmed"`
	Fees          float64 `json:"fees"`
	Size          int64   `json:"size"`
	ReceivedDate  string  `json:"received_date"`
	Version       float64 `json:"version"`
	LockTime      int64   `json:"lock_time"`
	Inputs        []struct {
		PrevHash  string `json:"prev_hash"`
		PrevIndex int    `json:"prev_index"`
		Value     int64  `json:"value"`
		Script    string `json:"script"`
		Address   string `json:"address"`
		Sequence  int64  `json:"sequence"`
	} `json:"inputs"`
	Outputs []struct {
		Value   int64  `json:"value"`
		Script  string `json:"script"`
		Address string `json:"address"`
	} `json:"outputs"`
}

ChainAnalysisTransaction holds transaction data from the bitcoin network

type ChatLog

type ChatLog struct {
	Nickname string `json:"nickname"`
	Message  string `json:"message"`
	Date     string `json:"date"`
}

ChatLog holds chat log information

type CollateralAccounts

type CollateralAccounts struct {
	CurrencyCode string  `json:"currency_code"`
	Amount       float64 `json:"amount"`
}

CollateralAccounts holds collateral balances

type CollateralHistory

type CollateralHistory struct {
	ID           int64   `json:"id"`
	CurrencyCode string  `json:"currency_code"`
	Change       float64 `json:"change"`
	Amount       float64 `json:"amount"`
	Reason       string  `json:"reason_code"`
	Date         string  `json:"date"`
}

CollateralHistory holds collateral history data

type DepositAddress

type DepositAddress struct {
	Type         string `json:"type"`
	CurrencyCode string `json:"currency_code"`
	Address      string `json:"address"`
}

DepositAddress hold depositing address information

type DepositHistory

type DepositHistory struct {
	ID           int64   `json:"id"`
	OrderID      int64   `json:"order_id"`
	CurrencyCode string  `json:"currency_code"`
	Amount       float64 `json:"amount"`
	Address      string  `json:"address"`
	TXHash       string  `json:"tx_hash"`
	Status       string  `json:"status"`
	EventDate    string  `json:"event_date"`
}

DepositHistory holds deposit history information

type ExecutedTrade

type ExecutedTrade struct {
	ID             int64   `json:"id"`
	Side           string  `json:"side"`
	Price          float64 `json:"price"`
	Size           float64 `json:"size"`
	ExecDate       string  `json:"exec_date"`
	BuyAcceptedID  string  `json:"buy_child_order_acceptance_id"`
	SellAcceptedID string  `json:"sell_child_order_acceptance_id"`
}

ExecutedTrade holds past trade information

type Executions

type Executions struct {
	ID                     int64   `json:"id"`
	ChildOrderID           string  `json:"child_order_id"`
	Side                   string  `json:"side"`
	Price                  float64 `json:"price"`
	Size                   float64 `json:"size"`
	Commission             float64 `json:"commission"`
	ExecDate               string  `json:"exec_date"`
	ChildOrderAcceptanceID string  `json:"child_order_acceptance_id"`
}

Executions holds past executed trade details

type MarginStatus

type MarginStatus struct {
	Collateral         float64 `json:"collateral"`
	OpenPosPNL         float64 `json:"open_position_pnl"`
	RequiredCollateral float64 `json:"require_collateral"`
	KeepRate           float64 `json:"keep_rate"`
}

MarginStatus holds margin status information

type MarketInfo

type MarketInfo struct {
	ProductCode string `json:"product_code"`
	Alias       string `json:"alias"`
}

MarketInfo holds market information returned from bitflyer

type NewOrder

type NewOrder struct {
	ProductCode    string  `json:"product_code"`
	ChildOrderType string  `json:"child_order_type"`
	Side           string  `json:"side"`
	Price          float64 `json:"price"`
	Size           float64 `json:"size"`
	MinuteToExpire float64 `json:"minute_to_expire"`
	TimeInForce    string  `json:"time_in_force"`
}

NewOrder to send a new order

type OpenInterest

type OpenInterest struct {
	ProductCode         string  `json:"product_code"`
	Side                string  `json:"side"`
	Price               float64 `json:"price"`
	Size                float64 `json:"size"`
	Commission          float64 `json:"commission"`
	SwapPointAccumulate float64 `json:"swap_point_accumulate"`
	RequiredCollateral  float64 `json:"require_collateral"`
	OpenDate            string  `json:"open_date"`
	Leverage            float64 `json:"leverage"`
	PNL                 float64 `json:"pnl"`
}

OpenInterest holds open interest information

type Orderbook

type Orderbook struct {
	MidPrice float64 `json:"mid_price"`
	Bids     []struct {
		Price float64 `json:"price"`
		Size  float64 `json:"size"`
	} `json:"bids"`
	Asks []struct {
		Price float64 `json:"price"`
		Size  float64 `json:"size"`
	} `json:"asks"`
}

Orderbook holds orderbook information

type Orders

type Orders struct {
	ID                     int64   `json:"id"`
	ChildOrderID           string  `json:"child_order_id"`
	ProductCode            string  `json:"product_code"`
	Side                   string  `json:"side"`
	ChildOrderType         string  `json:"child_order_type"`
	Price                  float64 `json:"price"`
	AveragePrice           float64 `json:"average_price"`
	Size                   float64 `json:"size"`
	ChildOrderState        string  `json:"child_order_state"`
	ExpireDate             string  `json:"expire_date"`
	ChildOrderDate         string  `json:"child_order_date"`
	ChildOrderAcceptanceID string  `json:"child_order_acceptance_id"`
	OutstandingSize        float64 `json:"outstanding_size"`
	CancelSize             float64 `json:"cancel_size"`
	ExecutedSize           float64 `json:"executed_size"`
	TotalCommission        float64 `json:"total_commission"`
}

Orders holds order full order information

type ParentOrderDetail

type ParentOrderDetail struct {
	ID              int64   `json:"id"`
	ParentOrderID   string  `json:"parent_order_id"`
	OrderMethod     string  `json:"order_method"`
	MinutesToExpire float64 `json:"minute_to_expire"`
	Parameters      []struct {
		ProductCode   string  `json:"product_code"`
		ConditionType string  `json:"condition_type"`
		Side          string  `json:"side"`
		Price         float64 `json:"price"`
		Size          float64 `json:"size"`
		TriggerPrice  float64 `json:"trigger_price"`
		Offset        float64 `json:"offset"`
	} `json:"parameters"`
}

ParentOrderDetail holds detailed information about an order

type ParentOrders

type ParentOrders struct {
	ID                      int64   `json:"id"`
	ParentOrderID           string  `json:"parent_order_id"`
	ProductCode             string  `json:"product_code"`
	Side                    string  `json:"side"`
	ParentOrderType         string  `json:"parent_order_type"`
	Price                   float64 `json:"price"`
	AveragePrice            float64 `json:"average_price"`
	Size                    float64 `json:"size"`
	ParentOrderState        string  `json:"parent_order_state"`
	ExpireDate              string  `json:"expire_date"`
	ParentOrderDate         string  `json:"parent_order_date"`
	ParentOrderAcceptanceID string  `json:"parent_order_acceptance_id"`
	OutstandingSize         float64 `json:"outstanding_size"`
	CancelSize              float64 `json:"cancel_size"`
	ExecutedSize            float64 `json:"executed_size"`
	TotalCommission         float64 `json:"total_commission"`
}

ParentOrders holds order full order information

type Ticker

type Ticker struct {
	ProductCode     string  `json:"product_code"`
	TimeStamp       string  `json:"timestamp"`
	TickID          int64   `json:"tick_id"`
	BestBid         float64 `json:"best_bid"`
	BestAsk         float64 `json:"best_ask"`
	BestBidSize     float64 `json:"best_bid_size"`
	BestAskSize     float64 `json:"best_ask_size"`
	TotalBidDepth   float64 `json:"total_bid_depth"`
	TotalAskDepth   float64 `json:"total_ask_depth"`
	Last            float64 `json:"ltp"`
	Volume          float64 `json:"volume"`
	VolumeByProduct float64 `json:"volume_by_product"`
}

Ticker holds ticker information

type TransactionHistory

type TransactionHistory struct {
	ID            int64   `json:"id"`
	OrderID       int64   `json:"order_id"`
	CurrencyCode  string  `json:"currency_code"`
	Amount        float64 `json:"amount"`
	Address       string  `json:"address"`
	TXHash        string  `json:"tx_hash"`
	Fee           float64 `json:"fee"`
	AdditionalFee float64 `json:"additional_fee"`
	Status        string  `json:"status"`
	EventDate     string  `json:"event_date"`
}

TransactionHistory holds prior transaction history data

Jump to

Keyboard shortcuts

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