Show / Hide Table of Contents

Interface IBar

Encapsulates basic bar information for Alpaca APIs.

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

Properties

| Improve this Doc View Source

Close

Gets bar close price.

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

High

Gets bar high price.

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

Low

Gets bar low price.

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

Open

Gets bar open price.

Declaration
Decimal Open { 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

TimeUtc

Gets the beginning time of this bar in UTC.

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

TradeCount

Gets total trades count for this bar.

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

Volume

Gets bar trading volume.

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

Vwap

Gets bar volume weighted average price.

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