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. |
Name | Type | Description |
---|---|---|
time | Date | The timestamp that represents the start of the interval span. |
open | Number | The first traded price during the period |
close | Number | The last traded price during the period |
high | Number | The highest price over the span of the period |
low | Number | The lowest price over the span of the period |
volume | Number | The number of shares exchanged during the period |
closeTime | Date | The timestamp that represents the end of the interval span. |
interval | String | The size of the interval. |
average | Number | The average trade price of an individual stock during the interval. |
change | Number | The change ratio from open to close. ((Close - Open)/Open). |
bidHigh | Number | The highest bid price from the interval. |
bidLow | Number | The lowest bid price from the interval. |
bidClose | Number | The last bid price from the interval. |
bidOpen | Number | The first bid price from the interval. |
bidFirstTime | Date | The timestamp that represents the first bid time from the interval span. |
bidLastTime | Date | The timestamp that represents the last bid time from the interval span. |
bidChangePercent | Number | The ratio of the close to open bid difference, in percent. |
askHigh | Number | The highest ask price from the interval. |
askLow | Number | The lowest ask price from the interval. |
askClose | Number | The last ask price from the interval. |
askOpen | Number | The first ask price from the interval. |
askFirstTime | Date | The timestamp that represents the first ask time from the interval span. |
askLastTime | Date | The timestamp that represents the last ask time from the interval span. |
askChangePercent | Number | The ratio of the close to open ask difference, in percent. |
tradeCount | Number | The number of qualified trades executed during the period |
Name | Type | Description |
---|---|---|
id | String | The Intrinio ID for Security |
companyId | String | The Intrinio ID for the Company for which the Security is issued |
exchange | String | The exchange's MIC |
exchangeMic | String | The security's exchange MIC |
stockExchangeId | 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 |
compositeTicker | String | The country-composite ticker of the Security |
figi | String | The OpenFIGI identifier |
compositeFigi | String | The country-composite OpenFIGI identifier |
shareClassFigi | String | The global-composite OpenFIGI identifier |
primaryListing | Boolean | If true, the Security is the primary issue for the company, otherwise it is a secondary issue on a secondary stock exchange |