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

    Type Alias EquityCurveRequest

    EquityCurveRequest: EquityCurveOptions & {
        maxPct?: number;
        mode?: "auto" | "topN" | "topPct" | "none";
        n?: number;
    }

    Selection (mode/n/maxPct) plus the transform preference (resample/differential/outMode) applied by GET .../equityCurve whenever ITS OWN query params are absent, for a curve this sweep retained. The transform half never affects retention or sweepId — a caller can always override it per-request at read time regardless of what was submitted here.

    Type Declaration

    • OptionalmaxPct?: number

      Top percentage of trials to retain when mode is topPct.

    • Optionalmode?: "auto" | "topN" | "topPct" | "none"

      Which trials keep their per-point equity curve. auto retains curves only while the accumulated size stays within server limits; topN/topPct retain curves for the best-ranked trials explicitly; none retains no curves.

    • Optionaln?: number

      Trial count to retain when mode is topN.