@openpit/engine
    Preparing search index...

    Interface SpotFundsPnlBoundsKillswitchConfigureOptions

    Runtime spot-funds P&L-bounds axis configuration options. Omitted axes stay unchanged. globalBarrier: null clears the singular barrier, while a barrier value replaces it. Supplied group/account iterables replace their axes. With a known effective account currency, an account-tier mismatch fails closed and blocks the account; account-group and global mismatches are skipped. A known-currency account with no account barrier and no matching fallback has no effective barrier, but its P&L keeps accumulating and publishing. Without an effective currency, the first in-scope barrier applies. Bounds are compared as stored and are never FX-converted.

    interface SpotFundsPnlBoundsKillswitchConfigureOptions {
        accountBarriers?:
            | Iterable<SpotFundsPnlBoundsAccountBarrier, any, any>
            | null;
        accountGroupBarriers?:
            | Iterable<SpotFundsPnlBoundsAccountGroupBarrier, any, any>
            | null;
        globalBarrier?: SpotFundsPnlBoundsBarrier | null;
    }
    Index
    accountBarriers?: Iterable<SpotFundsPnlBoundsAccountBarrier, any, any> | null
    accountGroupBarriers?:
        | Iterable<SpotFundsPnlBoundsAccountGroupBarrier, any, any>
        | null
    globalBarrier?: SpotFundsPnlBoundsBarrier | null