@argantom/argantom
    Preparing search index...

    Interface MarketPosition

    Historical market position details retrieved from the Kalshi API.

    interface MarketPosition {
        exchange_index: number;
        fees_paid_dollars: string;
        last_updated_ts: string;
        market_exposure_dollars: string;
        position_fp: string;
        realized_pnl_dollars: string;
        ticker: string;
        total_traded_dollars: string;
    }
    Index

    Properties

    exchange_index: number

    Identifier for an exchange shard.

    fees_paid_dollars: string

    Fixed-point US dollar string. Most request fields accept 2-4 decimal places (e.g., "0.56", "0.5600"); responses emit up to 6. Valid quote intervals for a given market are constrained by that market's price level structure.

    last_updated_ts: string

    Last time the position is updated

    market_exposure_dollars: string

    Fixed-point US dollar string. Most request fields accept 2-4 decimal places (e.g., "0.56", "0.5600"); responses emit up to 6. Valid quote intervals for a given market are constrained by that market's price level structure.

    position_fp: string

    Fixed-point contract count string (2 decimals, e.g., "10.00"; referred to as "fp" in field names). Requests accept 0-2 decimal places (e.g., "10", "10.0", "10.00"); responses always emit 2 decimals. Fractional contract values (e.g., "2.50") are supported; the minimum granularity is 0.01 contracts.

    realized_pnl_dollars: string

    Fixed-point US dollar string. Most request fields accept 2-4 decimal places (e.g., "0.56", "0.5600"); responses emit up to 6. Valid quote intervals for a given market are constrained by that market's price level structure.

    ticker: string

    Unique identifier for the market

    total_traded_dollars: string

    Fixed-point US dollar string. Most request fields accept 2-4 decimal places (e.g., "0.56", "0.5600"); responses emit up to 6. Valid quote intervals for a given market are constrained by that market's price level structure.