Deprecated. Return intraday stock prices for the Security with the given `identifier`
Name | Type | Description | Notes |
---|---|---|---|
identifier | str | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
source | str | Return intraday prices from the specified data source | [optional] |
start_date | date | Return intraday prices starting at the specified date | [optional] |
start_time | str | Return intraday prices starting at the specified time on the `start_date` (24-hour in ‘hh:mm' format, UTC timezone) | [optional] |
end_date | date | Return intraday prices stopping at the specified date | [optional] |
end_time | str | Return intraday prices stopping at the specified time on the `end_date` (24-hour in ‘hh:mm' format, UTC timezone) | [optional] |
page_size | int | The number of results to return | [optional] [default to 100] |
next_page | str | Gets the next page of data from a previous API call | [optional] |
Name | Type | Description |
---|---|---|
intraday_prices | list[IntradayStockPrice] | The intraday stock prices for the Security |
security | SecuritySummary | The Security resolved from the given identifier |
source | str | The source of the data |
next_page | str | 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. |
last_price | float | The price of the last trade. |
ask_price | float | The price of the top ask order. |
ask_size | float | The size of the top ask order. |
bid_price | float | The price of the top bid order. |
bid_size | float | The size of the top bid order. |
volume | float | The number of shares exchanged during the trading day on the exchange. |
source | str | The source of the data. |
Name | Type | Description |
---|---|---|
id | str | The Intrinio ID for Security |
company_id | str | The Intrinio ID for the Company for which the Security is issued |
exchange | str | The exchange's MIC |
exchange_mic | str | The security's exchange MIC |
stock_exchange_id | str | The exchange's Intrinio ID |
name | str | The name of the Security |
code | str | A 2-3 digit code classifying the Security (reference) |
currency | str | The currency in which the Security is traded on the exchange |
ticker | str | The common/local ticker of the Security |
composite_ticker | str | The country-composite ticker of the Security |
figi | str | The OpenFIGI identifier |
composite_figi | str | The country-composite OpenFIGI identifier |
share_class_figi | str | The global-composite OpenFIGI identifier |
primary_listing | bool | If True, the Security is the primary issue for the company, otherwise it is a secondary issue on a secondary stock exchange |