Show / Hide Table of Contents

Interface ITrade

Encapsulates the basic trade information from Alpaca APIs.

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

Properties

| 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

Exchange

Gets trade source exchange identifier.

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

Price

Gets trade price level.

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

Size

Gets trade quantity.

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

Symbol

Gets asset symbol.

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

TakerSide

Gets crypto trade taker side.

Declaration
TakerSide TakerSide { get; }
Property Value
Type Description
TakerSide
| 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 trade timestamp in UTC.

Declaration
DateTime TimestampUtc { get; }
Property Value
Type Description
DateTime
| Improve this Doc View Source

TradeId

Gets trade identifier.

Declaration
UInt64 TradeId { get; }
Property Value
Type Description
UInt64
| Improve this Doc View Source

Update

Gets trade update reason if any.

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