GLIDEPATH_DEFAULTS: {
    FIXED_RETURN: {
        START_RETURN: 0.1;
        END_RETURN: 0.055;
    };
    ALLOCATION_BASED: {
        START_EQUITY_WEIGHT: 0.9;
        END_EQUITY_WEIGHT: 0.3;
        EQUITY_RETURN: 0.12;
        BOND_RETURN: 0.04;
    };
    AGES: {
        START_AGE: 25;
        END_AGE: 65;
    };
} = ...

Default configuration values for dynamic glidepath calculations. These provide sensible starting points for retirement planning scenarios.

Type declaration

  • Readonly FIXED_RETURN: {
        START_RETURN: 0.1;
        END_RETURN: 0.055;
    }

    Default fixed return glidepath configuration. Represents a typical target-date fund progression.

    • Readonly START_RETURN: 0.1

      Starting return rate for aggressive investing (10%)

    • Readonly END_RETURN: 0.055

      Ending return rate for conservative investing (5.5%)

  • Readonly ALLOCATION_BASED: {
        START_EQUITY_WEIGHT: 0.9;
        END_EQUITY_WEIGHT: 0.3;
        EQUITY_RETURN: 0.12;
        BOND_RETURN: 0.04;
    }

    Default allocation-based glidepath configuration. Follows the common "120 minus age" equity allocation rule progression.

    • Readonly START_EQUITY_WEIGHT: 0.9

      Starting equity weight for young investors (90%)

    • Readonly END_EQUITY_WEIGHT: 0.3

      Ending equity weight near retirement (30%)

    • Readonly EQUITY_RETURN: 0.12

      Expected annual return for equity investments (12%)

    • Readonly BOND_RETURN: 0.04

      Expected annual return for bond investments (4%)

  • Readonly AGES: {
        START_AGE: 25;
        END_AGE: 65;
    }

    Default ages for glidepath calculations.

    • Readonly START_AGE: 25

      Typical starting career age

    • Readonly END_AGE: 65

      Standard retirement age

Generated using TypeDoc