Show / Hide Table of Contents

Interface IOrderBook

Encapsulates the basic order book information from Alpaca APIs.

Namespace: Alpaca.Markets
Assembly: Alpaca.Markets.dll
Syntax
public interface IOrderBook

Properties

| Improve this Doc View Source

Asks

Gets asks price/quantity pairs list.

Declaration
IReadOnlyList<IOrderBookEntry> Asks { get; }
Property Value
Type Description
IReadOnlyList<IOrderBookEntry>
| Improve this Doc View Source

Bids

Gets bids price/quantity pairs list.

Declaration
IReadOnlyList<IOrderBookEntry> Bids { get; }
Property Value
Type Description
IReadOnlyList<IOrderBookEntry>
| Improve this Doc View Source

Exchange

Gets identifier of source exchange.

Declaration
String Exchange { get; }
Property Value
Type Description
String
| Improve this Doc View Source

IsReset

Gets the order book reset flag.

Declaration
Boolean IsReset { get; }
Property Value
Type Description
Boolean
| Improve this Doc View Source

Symbol

Gets asset name.

Declaration
String Symbol { get; }
Property Value
Type Description
String
| Improve this Doc View Source

TimestampUtc

Gets quote timestamp in UTC time zone.

Declaration
DateTime TimestampUtc { get; }
Property Value
Type Description
DateTime
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX