API schema
Schema

FTPortfolio

Type: object

Properties

NameTypeDescription
dteFTDate
totalvaluestringTotal dollar value of portfolio (change from $100,000 on model's start date)
positionlistarray of FTPosition

Example shape

{
  "dte": {
    "marketdate": 0,
    "juliandate": 0,
    "strdate": "string",
    "yyyymmdd": "string"
  },
  "totalvalue": "string",
  "positionlist": [
    {
      "ticker": "SPY",
      "weight": "50"
    }
  ]
}