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": {
"example": "FTReturn"
},
"total": {
"example": "FTReturn"
},
"years": [
{
"example": "FTYearReturns"
}
],
"dates": {
"example": "FTReturnDates"
}
}