Show / Hide Table of Contents

Interface IQuote

Encapsulates the basic quote information from Alpaca APIs.

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

Properties

| Improve this Doc View Source

AskExchange

Gets identifier of ask source exchange.

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

AskPrice

Gets ask price level (lowest sell offer).

Declaration
Decimal AskPrice { get; }
Property Value
Type Description
Decimal
| Improve this Doc View Source

AskSize

Gets ask quantity.

Declaration
Decimal AskSize { get; }
Property Value
Type Description
Decimal
| Improve this Doc View Source

BidExchange

Gets identifier of bid source exchange.

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

BidPrice

Gets bid price level (highest buy offer).

Declaration
Decimal BidPrice { get; }
Property Value
Type Description
Decimal
| Improve this Doc View Source

BidSize

Gets bid quantity.

Declaration
Decimal BidSize { get; }
Property Value
Type Description
Decimal
| Improve this Doc View Source

Conditions

Gets trade conditions list.

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

Symbol

Gets asset symbol.

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

Tape

Gets tape where trade occurred.

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

TimestampUtc

Gets quote timestamp in UTC.

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