Factset · Schema
coverageTickHistory
Returns Coverage Response of the requested ticker with unique isocode within a date range
FinancialFinancial DataInvestment AnalyticsMarket DataPortfolio AnalyticsResearch
Properties
| Name | Type | Description |
|---|---|---|
| ticker | string | a unique ticker given to a company |
| factsetExchangeCode | string | FactSet specific exchange code. |
| startDate | string | The date for (or from which) the coverage is required. |
| latestTradeDate | string | This specifies the latest traded date from tick history. |
| companyName | string | Name of the firm |
| isin | string | returns the ISIN of the requested company |
| currency | string | Represents 3 digit ISO code for the currency |
| lastExchangeCode | string | the last traded exhange code from tick history |
| lastExchangeName | string | the last traded exchange name from tick history |
| primaryTickerExchange | string | the primary ticker iso |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "coverageTickHistory",
"type": "object",
"description": "Returns Coverage Response of the requested ticker with unique isocode within a date range",
"properties": {
"ticker": {
"type": "string",
"description": "a unique ticker given to a company"
},
"factsetExchangeCode": {
"type": "string",
"description": "FactSet specific exchange code."
},
"startDate": {
"type": "string",
"description": "The date for (or from which) the coverage is required. "
},
"latestTradeDate": {
"type": "string",
"description": "This specifies the latest traded date from tick history."
},
"companyName": {
"type": "string",
"description": "Name of the firm"
},
"isin": {
"type": "string",
"description": "returns the ISIN of the requested company "
},
"currency": {
"type": "string",
"description": "Represents 3 digit ISO code for the currency"
},
"lastExchangeCode": {
"type": "string",
"description": "the last traded exhange code from tick history"
},
"lastExchangeName": {
"type": "string",
"description": "the last traded exchange name from tick history"
},
"primaryTickerExchange": {
"type": "string",
"description": "the primary ticker iso"
}
}
}