@web-core/web-sdk
    Preparing search index...

    Interface IEndOfDayRepo

    interface IEndOfDayRepo {
        getEndOfDay(
            symbol: string,
            fields?: string | string[],
        ): Promise<EndOfDayResponse[]>;
    }
    Index

    Methods

    Methods

    • Fetches the end-of-day data for a given stock symbol.

      Parameters

      • symbol: string

        The stock symbol (e.g. "AKBNK").

      • Optionalfields: string | string[]

        Optional field(s) to include in the response (single string or array of strings).

      Returns Promise<EndOfDayResponse[]>

      Promise resolving to an array of EndOfDayResponse objects.