Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Order ¶
type Order struct {
OrderID uint64 `json:"order_id"`
ClientId uint64 `json:"client_id"`
Created time.Time `json:"created"`
Type OrderSide `json:"type"`
Pair string `json:"pair"`
Price big.Decimal `json:"price"`
Quantity big.Decimal `json:"quantity"`
Amount big.Decimal `json:"amount"`
}
Order represents a trade execution (buy or sell) with associated metadata.
type OrderSide ¶
type OrderSide int
OrderSide is a simple enumeration representing the side of an Order (buy or sell)
type StopOrder ¶
type StopOrder struct {
ParentOrderID string `json:"parent_order_id"`
OrderID uint64 `json:"order_id"`
ClientId uint64 `json:"client_id"`
Created time.Time `json:"created"`
Type OrderSide `json:"type"`
Pair string `json:"pair"`
TriggerPrice big.Decimal `json:"trigger_price"`
Quantity big.Decimal `json:"quantity"`
Amount big.Decimal `json:"amount"`
}
Click to show internal directories.
Click to hide internal directories.