Skip to content

@livefolio/sdk / EquityAsset

Type Alias: EquityAsset

EquityAsset = object

Defined in: interfaces/types.ts:21

An equity instrument — common stock or ETF.

Example

ts
const aapl: EquityAsset = {
  kind: 'equity',
  id: 'AAPL',
  symbol: 'AAPL',
  exchange: 'NASDAQ',
};

Properties

exchange?

optional exchange?: string

Defined in: interfaces/types.ts:28

MIC or common exchange name, e.g. 'NYSE', 'NASDAQ'. Optional.


id

id: AssetId

Defined in: interfaces/types.ts:24

Stable opaque ID — typically the ticker, but treat as opaque.


kind

kind: "equity"

Defined in: interfaces/types.ts:22


symbol

symbol: string

Defined in: interfaces/types.ts:26

Display symbol, e.g. 'AAPL'.

Released under the MIT License.