type OrderbookEntry: {
price: number;
quantity: number;
};
Represents an entry in an order book with price and quantity information.
Type declaration
Member | Type | Description |
---|---|---|
price | number | The price of the asset in this order book entry. |
quantity | number | The quantity of the asset available at the specified price. |