Show / Hide Table of Contents

Interface IPortfolioHistoryItem

Encapsulates portfolio history information item from Alpaca REST API.

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

Properties

| Improve this Doc View Source

Equity

Gets historical equity value.

Declaration
Decimal? Equity { get; }
Property Value
Type Description
System.Nullable<Decimal>
| Improve this Doc View Source

ProfitLoss

Gets historical profit/loss value.

Declaration
Decimal? ProfitLoss { get; }
Property Value
Type Description
System.Nullable<Decimal>
| Improve this Doc View Source

ProfitLossPercentage

Gets historical profit/loss value as percentages.

Declaration
Decimal? ProfitLossPercentage { get; }
Property Value
Type Description
System.Nullable<Decimal>
| Improve this Doc View Source

TimestampUtc

Gets historical timestamp value 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