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

    Type Alias EquityCurveOptions

    Requested equity-curve transform, applied server-side in a fixed pipeline order: resample (point count) then differential (encoding) then outMode (JSON shape) — each stage assumes the previous one already ran. A server-side size guard can still force a smaller/deflated shape above its thresholds regardless of what is requested here — see EquityCurveMeta for what actually happened.

    type EquityCurveOptions = {
        differential?: boolean;
        outMode?: EquityCurveOutMode;
        resample?: number;
    }
    Index
    differential?: boolean

    Delta-encode both fields from the second (post-resample) point onward.

    Requested JSON shape.

    resample?: number

    Downsample to at most this many points (extrema-preserving — the global max/min and the exact first/last point are always kept). Omit for no downsampling.