GlidepathWaypoint: {
    age: number;
    value: number;
}

Represents a single waypoint in a custom glidepath configuration.

Type declaration

  • age: number

    Age at which this waypoint applies. Must be positive.

  • value: number

    Value at this waypoint.

    • If valueType is 'return': annual return rate (must be > -1.0)
    • If valueType is 'equityWeight': equity allocation percentage (0.0 to 1.0)

Example

const waypoint: GlidepathWaypoint = {
age: 35,
value: 0.08 // 8% return or 80% equity weight, depending on valueType
};

Generated using TypeDoc