Skip to main content

Manifests

Strategy manifests describe how a strategy is registered and enriched.

Common manifest fields include:

  • name
  • optional aiAdapter
  • optional mlAdapter
  • optional runtime defaults
  • optional lifecycle hooks

Built-in strategy plugins export registry entries that pair a manifest with a strategy creator.

export const strategyEntries = [
{
manifest: trendLineManifest,
creator: TrendlineStrategyCreator,
},
];

Project config loads those entries through plugin registration.

Related: