API schema
Schema
FTPortfolio
Type: object
Properties
| Name | Type | Description |
|---|---|---|
dte | FTDate | |
totalvalue | string | Total dollar value of portfolio (change from $100,000 on model's start date) |
positionlist | array of FTPosition |
Example shape
{
"dte": {
"marketdate": 0,
"juliandate": 0,
"strdate": "string",
"yyyymmdd": "string"
},
"totalvalue": "string",
"positionlist": [
{
"ticker": "SPY",
"weight": "50"
}
]
}