API schema
Schema
FTStats
various stats and data points for a ticker or model
Type: object
Properties
| Name | Type | Description |
|---|---|---|
ticker | string | Ticker symbol |
name | string | Name of security |
dtestart | FTDate | |
dteend | FTDate | |
chartprices | FTChartData | |
describe | FTDescribe | |
max | FTMaxDraw | |
movingaverage | FTMovingAverage | |
returns | FTReturns | |
risk | FTRisk | |
aux | integer | describes the order which tickers were received. |
volumes | object | Average volume and volume data for stocks and ETFs. |
Example shape
{
"ticker": "string",
"name": "string",
"dtestart": {
"marketdate": 0,
"juliandate": 0,
"strdate": "string",
"yyyymmdd": "string"
},
"dteend": {
"marketdate": 0,
"juliandate": 0,
"strdate": "string",
"yyyymmdd": "string"
},
"chartprices": {
"p_percents": [
0
],
"p_percents2": [
0
],
"p_log": [
0
],
"p_divadj": [
0
],
"dates": {
"maxnumdays": 3000,
"strmaxnumdays": "09/01/88",
"dtes": [
{
"example": "FTDate"
}
],
"err": {
"example": "err"
}
}
},
"describe": {
"sharesout": "string",
"marketcap": "string",
"high_52": "string",
"low_52": "string",
"yield": "string",
"name": "string",
"price": "string",
"price_previous": "string"
},
"max": {
"maxdrawdown": "string",
"maxdrawlength": "string",
"recoverylength": "string",
"peakdate": "string",
"valleydate": "string"
},
"movingaverage": {
"movingaverages": [
{
"dte": {
"example": "FTDate"
},
"length": "string",
"value": "string"
}
]
}
}