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

NameTypeDescription
maxnumdaysintegermaximum number of market days in the FastTrack database
strmaxnumdaysstringThe last day in the FastTrack database
dtesarray of FTDateArray 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.
errerr

Example shape

{
  "maxnumdays": 3000,
  "strmaxnumdays": "09/01/88",
  "dtes": [
    {
      "example": "FTDate"
    }
  ],
  "err": {
    "example": "err"
  }
}