API schema
Schema
FTMomentumModel
Type: object
Properties
| Name | Type | Description |
|---|---|---|
universerequired | array of string | Universe of securities used for investing |
number_holdingsrequired | string | number of positions to hold |
basisrequired | string | The basis to use when calculating universe rankings on FTAlpha, Sharpe, and UPI. Set to "-1" to use the history of the equity curve (the model) |
ranking_systemrequired | string | How to rank the universe: Return, Sharpe, FTAlpha, UPI |
ranking_periodrequired | string | Lookback period for each ranking |
modelrequired | string | Momentum or Value |
tradedelayrequired | string | number of days AFTER ranking to wait to make the trade |
Example shape
{
"universe": [
"string"
],
"number_holdings": "4",
"basis": "SPY",
"ranking_system": "return",
"ranking_period": "quarter",
"model": "momentum",
"tradedelay": "1"
}