Skip to content

Commit

Permalink
Update IQFeed Configuration and Remove Deprecated Parameter (#7717)
Browse files Browse the repository at this point in the history
* fix: change wrong IQFeed config to new one

* remove: iqfeed param in leanArgumentParser
  • Loading branch information
Romazes authored Jan 24, 2024
1 parent 17902e2 commit 20a5f69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
6 changes: 0 additions & 6 deletions Configuration/LeanArgumentParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,6 @@ public static class LeanArgumentParser
new CommandLineOption("fxcm-password", CommandOptionType.SingleValue),
new CommandLineOption("fxcm-account-id", CommandOptionType.SingleValue),

// iqfeed configuration
new CommandLineOption("iqfeed-username", CommandOptionType.SingleValue),
new CommandLineOption("iqfeed-password", CommandOptionType.SingleValue),
new CommandLineOption("iqfeed-productName", CommandOptionType.SingleValue),
new CommandLineOption("iqfeed-version", CommandOptionType.SingleValue),

// coinbase configuration
new CommandLineOption("coinbase-rest-api", CommandOptionType.SingleValue),
new CommandLineOption("coinbase-url", CommandOptionType.SingleValue),
Expand Down
4 changes: 2 additions & 2 deletions Launcher/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -381,10 +381,10 @@
"setup-handler": "QuantConnect.Lean.Engine.Setup.BrokerageSetupHandler",
"result-handler": "QuantConnect.Lean.Engine.Results.LiveTradingResultHandler",
"data-feed-handler": "QuantConnect.Lean.Engine.DataFeeds.LiveTradingDataFeed",
"data-queue-handler": [ "QuantConnect.ToolBox.IQFeed.IQFeedDataQueueHandler" ],
"data-queue-handler": [ "QuantConnect.IQFeed.IQFeedDataQueueHandler" ],
"real-time-handler": "QuantConnect.Lean.Engine.RealTime.LiveTradingRealTimeHandler",
"transaction-handler": "QuantConnect.Lean.Engine.TransactionHandlers.BrokerageTransactionHandler",
"history-provider": [ "QuantConnect.ToolBox.IQFeed.IQFeedDataQueueHandler", "SubscriptionDataReaderHistoryProvider" ]
"history-provider": [ "QuantConnect.IQFeed.IQFeedDataQueueHandler", "SubscriptionDataReaderHistoryProvider" ]
},

// defines the 'live-fxcm' environment
Expand Down

0 comments on commit 20a5f69

Please sign in to comment.