Returns end-of-day stock prices for Securities on the Stock Exchange with `identifier` and on the `price_date` (or the latest date that prices are available)
Name | Type | Description | Notes |
---|---|---|---|
identifier | str | A Stock Exchange identifier (MIC or Intrinio ID) | |
date | date | The date for which to return prices. May not be used with the start_date and end_date parameters. | [optional] |
start_date | date | The start of the date range you're querying. May not be used with date parameter. | [optional] |
end_date | date | The end of the date range you're querying. May not be used with date parameter. | [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] |
tickers | list[str] | The comma-delimited list of ticker symbols to filter down to. If not provided, the entire stock exchange is returned. | [optional] |
next_page2 | str | Gets the next page of data from a previous API call | [optional] |
Name | Type | Description |
---|---|---|
stock_prices | list[StockPrice] | The stock prices for all Securities traded on the Stock Exchange on the given date |
stock_exchange | StockExchange | The Stock Exchange resolved from the given identifier |
next_page | str | The token required to request the next page of the data. If null, no further results are available. |