Discriminator for the glidepath configuration type.
Equity allocation percentage at starting age (0.0 to 1.0).
0.90 represents 90% equity allocation
Equity allocation percentage at ending age (0.0 to 1.0).
0.30 represents 30% equity allocation
Expected annual return for equity portion (decimal format). Must be > -1.0 (cannot lose more than 100%).
0.12 represents 12% annual equity return
Expected annual return for bond portion (decimal format). Must be > -1.0 (cannot lose more than 100%).
0.04 represents 4% annual bond return
const config: AllocationBasedGlidepathConfig = {
mode: 'allocation-based',
startEquityWeight: 0.90, // 90% equity at start
endEquityWeight: 0.30, // 30% equity at end
equityReturn: 0.12, // 12% equity returns
bondReturn: 0.04 // 4% bond returns
};
Generated using TypeDoc
Configuration for allocation-based glidepath that blends equity and bond returns based on linearly interpolated equity allocation by age.
Use case: Age-based asset allocation strategies (e.g., "120 minus age" rule)