@travishorn/financejs
    Preparing search index...

    Function fvschedule

    • Calculates the future value of an initial principal after applying a series of compound interest rates. Use this function to calculate the future value of an investment with a variable or adjustable rate.

      Remarks:

      • The values in schedule can be numbers or null; any other value will cause this function to throw a RangeError. Null values are taken as zeros (no interest).

      Parameters

      • principal: number

        The present value.

      • schedule: number[]

        An array of interest rates to apply.

      Returns number

      the future value

      fvschedule(1, [0.09, 0.11, 0.1]); // 1.33089000