@qtsurfer/api-client
    Preparing search index...

    Type Alias StrategySummary

    One entry from GET /strategies — the same provenance a full StrategyState carries (compiledAt, requiredSources), without its validation state, so listing stays cheap regardless of how many strategies you have registered. Check a specific strategy's validation with GET /strategy/{strategyId}.

    type StrategySummary = {
        compiledAt?: string;
        requiredSources?: string[];
        strategyId: StrategyId;
    }
    Index
    compiledAt?: string

    When the live compilation was produced.

    requiredSources?: string[]

    The market data this strategy needs. Absent, not empty, when it could not be established without constructing the strategy.

    strategyId: StrategyId