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