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) | |
interval_size | String | The interval for which to return stock prices | [default to 15m] |
source | String | Return intervals from the specified data source | [optional] |
start_date | Date | Return intervals starting at the specified date | [optional] |
start_time | String | 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 | 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] |
page_size | Integer | The number of results to return | [optional] [default to 100] |
split_adjusted | BOOLEAN | Whether to return the values adjusted for splits or not. Default is false. | [optional] [default to false] |
include_quote_only_bars | BOOLEAN | If true, also include bars where no trades occurred but quotes did. | [optional] [default to false] |
next_page | String | Gets the next page of data from a previous API call | [optional] |
Name | Type | Description |
---|---|---|
intervals | Array | 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 |
next_page | String | The token required to request the next page of the data. If null, no further results are available. |
Name | Type | Description |
---|---|---|
time | DateTime | The timestamp that represents the start of the interval span. |
open | Float | The first traded price during the period |
close | Float | The last traded price during the period |
high | Float | The highest price over the span of the period |
low | Float | The lowest price over the span of the period |
volume | Float | The number of shares exchanged during the period |
close_time | DateTime | The timestamp that represents the end of the interval span. |
interval | String | The size of the interval. |
average | Float | The average trade price of an individual stock during the interval. |
change | Float | The change ratio from open to close. ((Close - Open)/Open). |
bid_high | Float | The highest bid price from the interval. |
bid_low | Float | The lowest bid price from the interval. |
bid_close | Float | The last bid price from the interval. |
bid_open | Float | The first bid price from the interval. |
bid_first_time | DateTime | The timestamp that represents the first bid time from the interval span. |
bid_last_time | DateTime | The timestamp that represents the last bid time from the interval span. |
bid_change_percent | Float | The ratio of the close to open bid difference, in percent. |
ask_high | Float | The highest ask price from the interval. |
ask_low | Float | The lowest ask price from the interval. |
ask_close | Float | The last ask price from the interval. |
ask_open | Float | The first ask price from the interval. |
ask_first_time | DateTime | The timestamp that represents the first ask time from the interval span. |
ask_last_time | DateTime | The timestamp that represents the last ask time from the interval span. |
ask_change_percent | Float | The ratio of the close to open ask difference, in percent. |
trade_count | Float | The number of qualified trades executed during the period |
Name | Type | Description |
---|---|---|
id | String | The Intrinio ID for Security |
company_id | String | The Intrinio ID for the Company for which the Security is issued |
exchange | String | The exchange's MIC |
exchange_mic | String | The security's exchange MIC |
stock_exchange_id | String | The exchange's Intrinio ID |
name | String | The name of the Security |
code | String | A 2-3 digit code classifying the Security (reference) |
currency | String | The currency in which the Security is traded on the exchange |
ticker | String | The common/local ticker of the Security |
composite_ticker | String | The country-composite ticker of the Security |
figi | String | The OpenFIGI identifier |
composite_figi | String | The country-composite OpenFIGI identifier |
share_class_figi | String | The global-composite OpenFIGI identifier |
primary_listing | BOOLEAN | If true, the Security is the primary issue for the company, otherwise it is a secondary issue on a secondary stock exchange |