API schema
Schema
FTReturns
Object containing various annualized/total return values and history of yearly total returns
Type: object
Properties
| Name | Type | Description |
|---|---|---|
annualized | FTReturn | |
total | FTReturn | |
years | array of FTYearReturns | array containing total return, by year, of the ticker |
dates | FTReturnDates |
Example shape
{
"annualized": {
"period": "string",
"oneday": "string",
"fiveday": "string",
"onemonth": "string",
"threemonths": "string",
"sixmonths": "string",
"ninemonths": "string",
"one": "string"
},
"total": {
"period": "string",
"oneday": "string",
"fiveday": "string",
"onemonth": "string",
"threemonths": "string",
"sixmonths": "string",
"ninemonths": "string",
"one": "string"
},
"years": [
{
"year": "string",
"returns": "string"
}
],
"dates": {
"oneday": {
"dtestart": {
"example": "FTDate"
},
"dteend": {
"example": "FTDate"
}
},
"fiveday": {
"dtestart": {
"example": "FTDate"
},
"dteend": {
"example": "FTDate"
}
},
"onemonth": {
"dtestart": {
"example": "FTDate"
},
"dteend": {
"example": "FTDate"
}
},
"threemonth": {
"dtestart": {
"example": "FTDate"
},
"dteend": {
"example": "FTDate"
}
},
"sixmonth": {
"dtestart": {
"example": "FTDate"
},
"dteend": {
"example": "FTDate"
}
},
"ninemonths": {
"dtestart": {
"example": "FTDate"
},
"dteend": {
"example": "FTDate"
}
},
"one": {
"dtestart": {
"example": "FTDate"
},
"dteend": {
"example": "FTDate"
}
},
"three": {
"dtestart": {
"example": "FTDate"
},
"dteend": {
"example": "FTDate"
}
}
}
}