parent_command:forecast
usage: autoces [--naive] [-d {AAPL}] [-c TARGET_COLUMN] [-n N_DAYS] [-s {N,A,M}] [-p SEASONAL_PERIODS] [-w START_WINDOW] [--end S_END_DATE] [--start S_START_DATE] [--residuals] [--forecast-only] [--export-pred-raw]

Perform Automatic Complex Exponential Smoothing forecast: https://nixtla.github.io/statsforecast/models.html#autoces

optional arguments:
  --naive               Show the naive baseline for a model. (default: False)
  -d {AAPL}, --dataset {AAPL}
                        The name of the dataset you want to select (default: None)
  -c TARGET_COLUMN, --target-column TARGET_COLUMN
                        The name of the specific column you want to use (default: close)
  -n N_DAYS, --n-days N_DAYS
                        prediction days. (default: 5)
  -s {N,A,M}, --seasonal {N,A,M}
                        Seasonality: N: None, A: Additive, M: Multiplicative. (default: A)
  -p SEASONAL_PERIODS, --periods SEASONAL_PERIODS
                        Seasonal periods: 4: Quarterly, 7: Daily (default: 7)
  -w START_WINDOW, --window START_WINDOW
                        Start point for rolling training and forecast window. 0.0-1.0 (default: 0.85)
  --end S_END_DATE      The end date (format YYYY-MM-DD) to select for testing (default: None)
  --start S_START_DATE  The start date (format YYYY-MM-DD) to select for testing (default: None)
  --residuals           Show the residuals for the model. (default: False)
  --forecast-only       Do not plot the historical data without forecasts. (default: False)
  --export-pred-raw     Export predictions to a csv file. (default: False)


Examples:
- Forecast the closing price of a stock for the next 5 days using Automatic Complex Exponential Smoothing: forecast/autoces -d <SYMBOL> -c close -n 5
- Perform Automatic Complex Exponential Smoothing forecast on <SYMBOL> with a Multiplicative seasonality: forecast/autoces -d <SYMBOL> -s M
- Forecast <SYMBOL> for 10 days with a specific start and end date: forecast/autoces -d <SYMBOL> -n 10 --start 2022-01-01 --end 2022-12-31
- Show the naive baseline for <SYMBOL> using Automatic Complex Exponential Smoothing: forecast/autoces -d <SYMBOL> --naive
- Perform Automatic Complex Exponential Smoothing forecast on <SYMBOL> with a custom seasonal period: forecast/autoces -d <SYMBOL> -p 4
- Forecast <SYMBOL> using a specific target column and a custom rolling training window: forecast/autoces -d <SYMBOL> -c volume -w 0.9
- Show residuals for the Automatic Complex Exponential Smoothing model on <SYMBOL>: forecast/autoces -d <SYMBOL> --residuals
- Plot the forecast for <SYMBOL> without historical data: forecast/autoces -d <SYMBOL> --forecast-only
- Export Automatic Complex Exponential Smoothing predictions for <SYMBOL> to a csv file: forecast/autoces -d <SYMBOL> --export-pred-raw