16 using System.Collections.Generic;
17 using McMaster.Extensions.CommandLineUtils;
26 private const string ApplicationName =
"Lean Optimizer";
28 private const string ApplicationDescription =
"Lean Optimizer is a strategy optimization engine for algorithms.";
30 private const string ApplicationHelpText =
"If you are looking for help, please go to https://www.quantconnect.com/lean/docs";
32 private static readonly List<CommandLineOption> Options =
new List<CommandLineOption>
34 new CommandLineOption(
"estimate", CommandOptionType.NoValue,
"Estimate the optimization run time")
42 return ApplicationParser.
Parse(ApplicationName, ApplicationDescription, ApplicationHelpText, args, Options);