EquityPosition
Information about shares of single stock owned by the user, including number owned, current price, realized and unrealized gains, etc.
type EquityPosition {
averagePrice: Money!
image: URLString
marketValue: Money!
name: String!
openQuantity: DecimalString!
symbol: ID!
unrealizedDayProfitLoss: Money!
unrealizedDayProfitLossPercent: DecimalString!
unrealizedDayProfitLossPercentForDisplay: PercentString!
unrealizedProfitLoss: Money!
}
Fields
EquityPosition.averagePrice
● Money!
non-null object
The average price of the position.
EquityPosition.image
● URLString
scalar
Image for this instrument (Company logo)
EquityPosition.marketValue
● Money!
non-null object
The current market value for this instrument.
EquityPosition.name
● String!
non-null scalar
Name of this instrument.
EquityPosition.openQuantity
● DecimalString!
non-null scalar
The number of shares owned
EquityPosition.symbol
● ID!
non-null scalar
The symbol for this position.
EquityPosition.unrealizedDayProfitLoss
● Money!
non-null object
The amount of profit or loss this position has undergone since its most recent opening price.
EquityPosition.unrealizedDayProfitLossPercent
● DecimalString!
non-null scalar
The percent of profit or loss this position has undergone since its most recent opening price.
EquityPosition.unrealizedDayProfitLossPercentForDisplay
● PercentString!
non-null scalar
The unrealizedDayProfitLossPercent formatted as a percent.
EquityPosition.unrealizedProfitLoss
● Money!
non-null object
The amount of profit or loss that has occurred over the lifetime of the user owning this position. i.e. currentWorth - amountPaid
Member of
EquityPositionsPayload
object