Chartbreaker
    Preparing search index...

    Interface Quote

    An OTC quote.

    interface Quote {
        expiration: { expires: Date; started: Date };
        quotation: Amount;
        size?: string;
        sourceName?: string;
        totalAmount?: Amount;
        authorize(
            orderOpts: QuoteOrderOpts,
            confirmedRiskHint: boolean,
            authenticationMethodId?: string,
            signal?: AbortSignal_2,
        ): Promise<AuthorizedOrder>;
        buildDetailedOrderCostEstimationToken?(orderOpts: QuoteOrderOpts): string;
        createOrderCalculationObservable?(
            orderOpts: QuoteOrderOpts,
        ): Observable<CalculationResult>;
        estimateOrderCosts?(
            orderOpts: QuoteOrderOpts,
            signal?: AbortSignal_2,
        ): Promise<OrderCostEstimation>;
    }
    Index

    Properties

    expiration: { expires: Date; started: Date }
    quotation: Amount
    size?: string
    sourceName?: string
    totalAmount?: Amount

    Methods

    • If defined, a detailed cost estimation can be retrieved using the token generated by this function, using the getDetailedCostEstimationTable of the session.

      Parameters

      Returns string