API schema
Schema

FTMomentumModel

Type: object

Properties

NameTypeDescription
universerequiredarray of stringUniverse of securities used for investing
number_holdingsrequiredstringnumber of positions to hold
basisrequiredstringThe 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_systemrequiredstringHow to rank the universe: Return, Sharpe, FTAlpha, UPI
ranking_periodrequiredstringLookback period for each ranking
modelrequiredstringMomentum or Value
tradedelayrequiredstringnumber 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"
}