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

    Interface IPriceAnalysisRepo

    interface IPriceAnalysisRepo {
        getPriceAnalysis(
            code: string,
            at: string,
        ): Promise<PriceAnalysisResponse>;
        getPriceAnalysisHourly(
            code: string,
            from: string,
            to: string,
        ): Promise<PriceAnalysisResponse>;
    }
    Index

    Methods

    • Parameters

      • code: string

        code (definition legacyCode)

      • at: string

        at date (format: yyyyMMdd)

      Returns Promise<PriceAnalysisResponse>

      get price analysis daily data

    • Parameters

      • code: string

        code (definition legacyCode)

      • from: string

        at date (format: yyyyMMddHHmmss)

      • to: string

        at date (format: yyyyMMddHHmmss)

      Returns Promise<PriceAnalysisResponse>

      get price analysis hourly data (max 8 hours)