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 | str | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
interval_size | str | The interval for which to return stock prices | [default to 15m] |
source | str | Return intervals from the specified data source | [optional] |
start_date | date | Return intervals starting at the specified date | [optional] |
start_time | str | Return intervals starting at the specified time on the `start_date` (24-hour in ‘hh:mm:ss' format) | [optional] |
end_date | date | Return intervals stopping at the specified date | [optional] |
end_time | str | Return intervals stopping at the specified time on the `end_date` (24-hour in ‘hh:mm:ss' format) | [optional] |
timezone | str | Interprets the input times in this time zone, as well as returns times in this timezone. | [optional] [default to UTC] |
page_size | int | The number of results to return | [optional] [default to 100] |
split_adjusted | bool | Whether to return the values adjusted for splits or not. Default is False. | [optional] [default to False] |
include_quote_only_bars | bool | If True, also include bars where no trades occurred but quotes did. | [optional] [default to False] |
next_page | str | Gets the next page of data from a previous API call | [optional] |
Name | Type | Description |
---|---|---|
intervals | list[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 | str | The source of the data |
next_page | str | The token required to request the next page of the data. If null, no further results are available. |