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. |
Name | Type | Description |
---|---|---|
Time | DateTime? | The timestamp that represents the start of the interval span. |
Open | decimal? | The first traded price during the period |
Close | decimal? | The last traded price during the period |
High | decimal? | The highest price over the span of the period |
Low | decimal? | The lowest price over the span of the period |
Volume | decimal? | The number of shares exchanged during the period |
CloseTime | DateTime? | The timestamp that represents the end of the interval span. |
Interval | string | The size of the interval. |
Average | decimal? | The average trade price of an individual stock during the interval. |
Change | decimal? | The change ratio from open to close. ((Close - Open)/Open). |
BidHigh | decimal? | The highest bid price from the interval. |
BidLow | decimal? | The lowest bid price from the interval. |
BidClose | decimal? | The last bid price from the interval. |
BidOpen | decimal? | The first bid price from the interval. |
BidFirstTime | DateTime? | The timestamp that represents the first bid time from the interval span. |
BidLastTime | DateTime? | The timestamp that represents the last bid time from the interval span. |
BidChangePercent | decimal? | The ratio of the close to open bid difference, in percent. |
AskHigh | decimal? | The highest ask price from the interval. |
AskLow | decimal? | The lowest ask price from the interval. |
AskClose | decimal? | The last ask price from the interval. |
AskOpen | decimal? | The first ask price from the interval. |
AskFirstTime | DateTime? | The timestamp that represents the first ask time from the interval span. |
AskLastTime | DateTime? | The timestamp that represents the last ask time from the interval span. |
AskChangePercent | decimal? | The ratio of the close to open ask difference, in percent. |
TradeCount | decimal? | 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 | bool? | If true, the Security is the primary issue for the company, otherwise it is a secondary issue on a secondary stock exchange |