Generalized Adaptive Capped Estimator
A stable, deterministic forecasting engine for weekly, monthly,quarterly, and yearly data.
GACE provides a transparent, tuning-free forecasting method based onhybrid growth signals and adaptive asymmetric caps.
It extends deterministic capped-growth forecasting to support weekly,monthly, quarterly, and yearly time series with optional seasonalscaling.
The method is designed for:
The philosophy: Stable + Interpretable + Fast
No nonlinear optimization. No stochastic fitting. Fullydeterministic.
Install the released version from CRAN:
install.packages("GACE")library(GACE)set.seed(1)y<-ts(rnorm(60,mean =100,sd =10),frequency =12)fc<-gace_forecast(y,periods =12,freq ="month")plot_gace(fc)