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

    Type Alias GetLiveRunSignalsData

    type GetLiveRunSignalsData = {
        body?: never;
        path: { runId: string };
        query?: {
            cursor?: string;
            instrument?: string;
            limit?: number;
            sinceMs?: number;
        };
        url: "/live/{runId}/signals";
    }
    Index
    body?: never
    path: { runId: string }

    Type Declaration

    • runId: string

      The run whose signals to read.

    query?: {
        cursor?: string;
        instrument?: string;
        limit?: number;
        sinceMs?: number;
    }

    Type Declaration

    • Optionalcursor?: string

      Continue from a previous page's _links.next. Takes precedence over sinceMs.

    • Optionalinstrument?: string

      Narrow to one or more instruments. Omitted, or *, returns every instrument the run covers. Accepts a single pair (BTC/USDT), either half as a wildcard (*USDT for any base against that quote, BTC* for that base against any quote), or a comma-separated list of pairs (BTC/USDT,ETH/EUR). Symbols are matched exactly, case included — pass them as this API reports them.

    • Optionallimit?: number

      Page size.

    • OptionalsinceMs?: number

      Start from this moment (epoch ms). Omitted, or older than the available window, starts at availableSinceMs. Ignored when cursor is given.

    url: "/live/{runId}/signals"