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 | Character | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
interval_size | Character | The interval for which to return stock prices | [default to 15m] |
source | Character | Return intervals from the specified data source | [optional] |
start_date | Date | Return intervals starting at the specified date | [optional] |
start_time | Character | 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 | Character | Return intervals stopping at the specified time on the `end_date` (24-hour in ‘hh:mm:ss' format) | [optional] |
timezone | Character | Interprets the input times in this time zone, as well as returns times in this timezone. | [optional] [default to UTC] |
page_size | Integer | The number of results to return | [optional] [default to 100] |
split_adjusted | Logical | Whether to return the values adjusted for splits or not. Default is FALSE. | [optional] [default to FALSE] |
include_quote_only_bars | Logical | If TRUE, also include bars where no trades occurred but quotes did. | [optional] [default to FALSE] |
next_page | Character | Gets the next page of data from a previous API call | [optional] |
Name | Type | Description |
---|---|---|
intervals | List of StockPriceInterval | Open, close, high, low, volume, average price, and change ratio for a particular interval |
intervals_data_frame | Data Frame | Data frame representation of intervals |
security | SecuritySummary | The Security resolved from the given identifier |
source | Character | The source of the data |
next_page | Character | The token required to request the next page of the data. If null, no further results are available. |