Chartbreaker
    Preparing search index...

    Type Alias Amount

    type Amount = {
        currency?: CurrencyCode;
        date?: DateString;
        isRealtime?: boolean;
        maxDecimals?: number;
        minDecimals?: number;
        timestamp?: number;
        value?: string;
    }
    Index

    Properties

    currency?: CurrencyCode
    date?: DateString

    If the amount is valid at a given calendar date (without daytime information), this can be set.

    isRealtime?: boolean

    If this is present and true, a "value is provided in realtime" indicator can be displayed. If this is present and false, a "value is provided delayed" indicator can be displayed. If this is not present, no such indication is available.

    maxDecimals?: number
    minDecimals?: number
    timestamp?: number

    If the amount is valid at a given point in time, this can be set (e.g. for quotes). This is a UNIX timestamp in milliseconds.

    value?: string