Return open, close, high, low, volume, average price, and change ratio for a particular interval for the Security with the given `identifier`
Name | Type | Description | Notes |
---|---|---|---|
identifier | String | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
intervalSize | String | The interval for which to return stock prices | [default to 15m] |
source | String | Return intervals from the specified data source | [optional] |
startDate | Date | Return intervals starting at the specified date | [optional] |
startTime | String | Return intervals starting at the specified time on the `start_date` (24-hour in ‘hh:mm:ss' format) | [optional] |
endDate | Date | Return intervals stopping at the specified date | [optional] |
endTime | String | Return intervals stopping at the specified time on the `end_date` (24-hour in ‘hh:mm:ss' format) | [optional] |
timezone | String | Interprets the input times in this time zone, as well as returns times in this timezone. | [optional] [default to UTC] |
pageSize | Number | The number of results to return | [optional] [default to 100] |
splitAdjusted | Boolean | Whether to return the values adjusted for splits or not. Default is false. | [optional] [default to false] |
includeQuoteOnlyBars | Boolean | If true, also include bars where no trades occurred but quotes did. | [optional] [default to false] |
nextPage | String | Gets the next page of data from a previous API call | [optional] |
Name | Type | Description |
---|---|---|
intervals | [StockPriceInterval] | Open, close, high, low, volume, average price, and change ratio for a particular interval |
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. |