According to this documentation I should be able to run the following command to download data to use for local backtesting with Lean
 

I've successfully setup my lean environment as described in previous documentation.

When I run:

dotnet QuantConnect.ToolBox.dll --app=PDL  --tickers=XLE --resolution=Daily --from-date=20200101-00:00:00 --to-date=20220101-00:00:00 --security-type=Equity --api-key=?????

I get the following:

20220831 05:55:54.617 TRACE:: Config.GetValue(): debug-mode - Using default value: False
20220831 05:55:54.618 TRACE:: Config.Get(): Configuration key not found. Key: results-destination-folder - Using default value:
20220831 05:55:54.619 TRACE:: Config.Get(): Configuration key not found. Key: plugin-directory - Using default value:
20220831 05:55:54.622 TRACE:: Config.Get(): Configuration key not found. Key: composer-dll-directory - Using default value:
20220831 05:55:54.623 TRACE:: Composer(): Loading Assemblies from C:\Users\rjbru\Code\Lean\Launcher\bin\Debug\
20220831 05:55:54.699 TRACE:: Config.Get(): Configuration key not found. Key: data-directory - Using default value: ../../../Data
20220831 05:55:54.748 TRACE:: Config.GetValue(): api-data-update-period - Using default value: 1
20220831 05:55:54.752 TRACE:: Config.Get(): Configuration key not found. Key: data-directory - Using default value: ../../../Data/
20220831 05:55:54.752 TRACE:: Config.Get(): Configuration key not found. Key: version-id - Using default value:
20220831 05:55:54.752 TRACE:: Config.Get(): Configuration key not found. Key: cache-location - Using default value: ../../../Data/
20220831 05:55:54.976 ERROR:: PolygonDataQueueHandler.GetHistory(): History calls for Polygon.io require an API key.


The key is specified however in the command, and I am certain it is a functioning api key from polygon.io side. Any ideas or is this possibly a bug? I do not see Polygon as an option for the --app argument in the --help output of the command.