API schema
Schema
FTDates
This object contains all date information for FastTrack. There are "MaxNumDays" in the database. All prices and date arrays are sized "MaxNumdays". The index of the array is also the market day of that value. A date's market day is number of market days elapsed since 9/1/88, the first day in the FastTrack database.
Type: object
Properties
| Name | Type | Description |
|---|---|---|
maxnumdays | integer | maximum number of market days in the FastTrack database |
strmaxnumdays | string | The last day in the FastTrack database |
dtes | array of FTDate | Array of FTDate objects for every day in the database. Every market day in the database is included in the array. Index 0 is a repeat of index 1. |
err | err |
Example shape
{
"maxnumdays": 3000,
"strmaxnumdays": "09/01/88",
"dtes": [
{
"example": "FTDate"
}
],
"err": {
"example": "err"
}
}