Skip to content

DataUniverseDownloadConfig

QuantConnect.DownloaderDataProvider.Launcher.Models.DataUniverseDownloadConfig

DataUniverseDownloadConfig()

Bases: BaseDataDownloadConfig

Represents the configuration for downloading data for a universe of securities.

Initializes a new instance of the DataUniverseDownloadConfig class using configuration settings.

data_type

data_type: Type

Gets the type of data universe download.

start_date

start_date: datetime

Gets the start date for the data download.

end_date

end_date: datetime

Gets the end date for the data download.

resolution

resolution: Resolution

Gets or sets the resolution of the downloaded data.

market_name

market_name: str

Gets or sets the market name for which the data will be downloaded.

security_type

security_type: SecurityType

Gets the type of security for which the data is being downloaded.

tick_type

tick_type: TickType

Gets or sets the type of tick data to be downloaded.

symbols

symbols: Sequence[Symbol]

Gets the list of symbols for which the data will be downloaded.

parse_date

parse_date(date: str) -> datetime

Parses a string to a DateTime using a specific date format.

This codeEntityType is protected.

Parameters:

Name Type Description Default
date str

The date string to parse.

required

Returns:

Type Description
datetime

The parsed DateTime value.