API schema
Schema
FTChartData
Pre calculated data used to draw charts
Type: object
Properties
| Name | Type | Description |
|---|---|---|
p_percents | array of number | daily percent return data |
p_percents2 | array of number | percent return from start date data |
p_log | array of number | log adjusted percent return from start date data (p_percents2) |
p_divadj | array of number | daily dividend adjusted closing prices |
dates | FTDates |
Example shape
{
"p_percents": [
0
],
"p_percents2": [
0
],
"p_log": [
0
],
"p_divadj": [
0
],
"dates": {
"example": "FTDates"
}
}