Return end-of-day stock prices for the Security with the given `identifier`
Name | Type | Description | Notes |
---|---|---|---|
identifier | String | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
start_date | Date | Return prices on or after the date | [optional] |
end_date | Date | Return prices on or before the date | [optional] |
frequency | String | Return stock prices in the given frequency | [optional] [default to daily] |
page_size | Integer | The number of results to return | [optional] [default to 100] |
next_page | String | Gets the next page of data from a previous API call | [optional] |
Name | Type | Description |
---|---|---|
stock_prices | Array | The stock prices for the Security |
security | SecuritySummary | The Security resolved from the given identifier |
next_page | String | The token required to request the next page of the data. If null, no further results are available. |
Name | Type | Description |
---|---|---|
date | Date | The calendar date that the stock price represents. For non-daily stock prices, this represents the last day in the period (end of the week, month, quarter, year, etc) |
intraperiod | BOOLEAN | If true, the stock price represents an unfinished period (be it day, week, quarter, month, or year), meaning that the close price is the latest price available, not the official close price for the period |
frequency | String | The type of period that the stock price represents |
open | Float | The price at the beginning of the period |
high | Float | The highest price over the span of the period |
low | Float | The lowest price over the span of the period |
close | Float | The price at the end of the period |
volume | Float | The number of shares exchanged during the period |
adj_open | Float | The price at the beginning of the period, adjusted for splits and dividends |
adj_high | Float | The highest price over the span of the period, adjusted for splits and dividends |
adj_low | Float | The lowest price over the span of the period, adjusted for splits and dividends |
adj_close | Float | The price at the end of the period, adjusted for splits and dividends |
adj_volume | Float | The number of shares exchanged during the period, adjusted for splits and dividends |
factor | Float | The factor by which to multiply stock prices before this date, in order to calculate historically-adjusted stock prices. |
split_ratio | Float | The ratio of the stock split, if a stock split occurred. |
dividend | Float | The dividend amount, if a dividend was paid. |
change | Float | The difference in price from the last price for this frequency |
percent_change | Float | The percent difference in price from the last price for this frequency |
fifty_two_week_high | Float | The 52 week high price (daily only) |
fifty_two_week_low | Float | The 52 week low price (daily only) |
Name | Type | Description |
---|---|---|
id | String | The Intrinio ID for Security |
company_id | String | The Intrinio ID for the Company for which the Security is issued |
exchange | String | The exchange's MIC |
exchange_mic | String | The security's exchange MIC |
stock_exchange_id | 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 |
composite_ticker | String | The country-composite ticker of the Security |
figi | String | The OpenFIGI identifier |
composite_figi | String | The country-composite OpenFIGI identifier |
share_class_figi | String | The global-composite OpenFIGI identifier |
primary_listing | BOOLEAN | If true, the Security is the primary issue for the company, otherwise it is a secondary issue on a secondary stock exchange |