Deprecated. Return intraday stock prices for the Security with the given `identifier`
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
source | string | Return intraday prices from the specified data source | [optional] |
startDate | DateTime? | Return intraday prices starting at the specified date | [optional] |
startTime | string | Return intraday prices starting at the specified time on the `start_date` (24-hour in ‘hh:mm' format, UTC timezone) | [optional] |
endDate | DateTime? | Return intraday prices stopping at the specified date | [optional] |
endTime | string | Return intraday prices stopping at the specified time on the `end_date` (24-hour in ‘hh:mm' format, UTC timezone) | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
Name | Type | Description |
---|---|---|
IntradayPrices | List | The intraday stock prices for the Security |
Security | SecuritySummary | The Security resolved from the given identifier |
Source | string | The source of the data |
NextPage | string | The token required to request the next page of the data. If null, no further results are available. |
Name | Type | Description |
---|---|---|
Time | DateTime? | The timestamp that the `last_price` represents. |
LastPrice | decimal? | The price of the last trade. |
AskPrice | decimal? | The price of the top ask order. |
AskSize | decimal? | The size of the top ask order. |
BidPrice | decimal? | The price of the top bid order. |
BidSize | decimal? | The size of the top bid order. |
Volume | decimal? | The number of shares exchanged during the trading day on the exchange. |
Source | string | The source of the data. |
Name | Type | Description |
---|---|---|
Id | string | The Intrinio ID for Security |
CompanyId | string | The Intrinio ID for the Company for which the Security is issued |
Exchange | string | The exchange's MIC |
ExchangeMic | string | The security's exchange MIC |
StockExchangeId | string | The exchange's Intrinio ID |
Name | string | The name of the Security |
Code | string | A 2-3 digit code classifying the Security (reference) |
Currency | string | The currency in which the Security is traded on the exchange |
Ticker | string | The common/local ticker of the Security |
CompositeTicker | string | The country-composite ticker of the Security |
Figi | string | The OpenFIGI identifier |
CompositeFigi | string | The country-composite OpenFIGI identifier |
ShareClassFigi | string | The global-composite OpenFIGI identifier |
PrimaryListing | bool? | If true, the Security is the primary issue for the company, otherwise it is a secondary issue on a secondary stock exchange |