forinvest-cli
    Preparing search index...

    Interface ILiquidityRepo

    interface ILiquidityRepo {
        getLiquidity(
            legacyCode: string,
            period: string,
            from: string,
            to: string,
        ): Promise<LiquidityResponse[]>;
    }
    Index

    Methods

    Methods

    • Parameters

      • legacyCode: string

        definition code ex: GARAN.E.BIST

      • period: string

        for weekly w, monthly m, yearly m, for daily 1440

      • from: string

        Date format is yyyyMMddHHmmss (from param must be before to date parameter)

      • to: string

        Date format is yyyyMMddHHmmss (to param must be after from date param)

      Returns Promise<LiquidityResponse[]>