Show / Hide Table of Contents

Class LatestMarketDataListRequest

Encapsulates data for latest stock data requests on Alpaca Data API v2.

Inheritance
System.Object
LatestMarketDataListRequest
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Alpaca.Markets
Assembly: Alpaca.Markets.dll
Syntax
public sealed class LatestMarketDataListRequest

Constructors

| Improve this Doc View Source

LatestMarketDataListRequest(IEnumerable<String>)

Creates new instance of LatestMarketDataListRequest object.

Declaration
public LatestMarketDataListRequest(IEnumerable<String> symbols)
Parameters
Type Name Description
IEnumerable<String> symbols

Asset name for data retrieval.

Properties

| Improve this Doc View Source

Currency

Gets or sets the optional parameter for the returned prices in ISO 4217 standard. For example: USD, EUR, JPY, etc. In case of null the default USD will be used.

Declaration
public String? Currency { get; set; }
Property Value
Type Description
System.Nullable<String>
| Improve this Doc View Source

Feed

Gets or sets the feed to pull market data from. The Sip and Otc are only available to those with a subscription. Default is Iex for free plans and Sip for paid.

Declaration
public MarketDataFeed? Feed { get; set; }
Property Value
Type Description
System.Nullable<MarketDataFeed>
| Improve this Doc View Source

Symbols

Gets asset name for data retrieval.

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