• Documentation
  • Api Reference
Show / Hide Table of Contents
  • EzBtc.Api
    • EzBtcClient
  • EzBtc.Api.Models
    • OrderBook
    • OrderBookEntry
    • Ticker
    • Transaction

Class OrderBook

Represents an order book consisting of Bids and Asks.

Inheritance
System.Object
OrderBook
Namespace: EzBtc.Api.Models
Assembly: EzBtc.Api.dll
Syntax
public class OrderBook

Properties

| Improve this Doc View Source

Asks

A list of the top 50 open sell orders, sorted by rate ascending.

Declaration
[JsonProperty("asks")]
public List<OrderBookEntry> Asks { get; set; }
Property Value
Type Description
System.Collections.Generic.List<OrderBookEntry>
| Improve this Doc View Source

Bids

A list of the top 50 open buy orders, sorted by rate descending.

Declaration
[JsonProperty("bids")]
public List<OrderBookEntry> Bids { get; set; }
Property Value
Type Description
System.Collections.Generic.List<OrderBookEntry>
  • Improve this Doc
  • View Source
Back to top Generated by DocFX