From ff83d724871b75660150724fbb33c4e0d9b0fd99 Mon Sep 17 00:00:00 2001 From: Ronit Jain Date: Fri, 5 Jan 2024 00:48:56 +0530 Subject: [PATCH] add required options for local reuslt service (#7660) --- Configuration/LeanArgumentParser.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Configuration/LeanArgumentParser.cs b/Configuration/LeanArgumentParser.cs index 98f7aca6f92a..fc680d6e7483 100644 --- a/Configuration/LeanArgumentParser.cs +++ b/Configuration/LeanArgumentParser.cs @@ -78,6 +78,7 @@ public static class LeanArgumentParser new CommandLineOption("factor-file-provider", CommandOptionType.SingleValue), new CommandLineOption("data-provider", CommandOptionType.SingleValue), new CommandLineOption("alpha-handler", CommandOptionType.SingleValue), + new CommandLineOption("history-provider", CommandOptionType.SingleValue), // limits on number of symbols to allow new CommandLineOption("symbol-minute-limit", CommandOptionType.SingleValue), @@ -94,6 +95,7 @@ public static class LeanArgumentParser // To get your api access token go to quantconnect.com/account new CommandLineOption("job-user-id", CommandOptionType.SingleValue), new CommandLineOption("api-access-token", CommandOptionType.SingleValue), + new CommandLineOption("job-organization-id", CommandOptionType.SingleValue), // live data configuration new CommandLineOption("live-data-url", CommandOptionType.SingleValue),