Chartbreaker
    Preparing search index...

    Type Alias Instrument

    type Instrument = {
        alternativeInstruments?: InstrumentId[];
        assetClass: { id: number };
        category?: { id?: number };
        id: InstrumentId;
        identifiers?: {
            gkfxTicker?: string;
            isin?: string;
            jfdTicker?: string;
            jfdTickerStock?: string;
            sinoTicker?: string;
            usTicker?: string;
            whselfinvestCommissionMarketId?: string;
            whselfinvestSpreadMarketId?: string;
            wkn?: string;
        };
        name: string;
        product?: {
            knockOut?: number;
            optionType?: "C"
            | "P";
            strikeCurrency?: { iso?: string };
        };
        quotations: Quotation[];
        slug: string;
        underlying?: Instrument;
    }
    Index

    Properties

    alternativeInstruments?: InstrumentId[]

    Array of instrumentIds which may mirror this instrument Used for crypto to display e.g. BTC values in all currency charts (e.g. BTC/EUR and BTC/USD)

    assetClass: { id: number }
    category?: { id?: number }

    Type Declaration

    • Optionalid?: number

      BörseGo Instrument category Id. E.g. 100 for Knock-Outs

    identifiers?: {
        gkfxTicker?: string;
        isin?: string;
        jfdTicker?: string;
        jfdTickerStock?: string;
        sinoTicker?: string;
        usTicker?: string;
        whselfinvestCommissionMarketId?: string;
        whselfinvestSpreadMarketId?: string;
        wkn?: string;
    }
    name: string
    product?: {
        knockOut?: number;
        optionType?: "C" | "P";
        strikeCurrency?: { iso?: string };
    }

    Additional product info, if applicable

    Type Declaration

    • OptionalknockOut?: number

      KO of the product, if applicable

    • OptionaloptionType?: "C" | "P"

      E.g. for Knock Out products: C for Call/Long, P for Put/Short

    • OptionalstrikeCurrency?: { iso?: string }

      The strike currency (e.g. unit of the Knock Out value)

    quotations: Quotation[]
    slug: string
    underlying?: Instrument