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 | DateTime? | 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 | DateTime? | 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 | int? | The number of results to return | [optional] [default to 100] |
splitAdjusted | bool? | Whether to return the values adjusted for splits or not. Default is false. | [optional] [default to false] |
includeQuoteOnlyBars | bool? | 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 | List | 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. |