Lean
$LEAN_TAG$
|
Represents the configuration for data download. More...
Public Member Functions | |
DataDownloadConfig () | |
Initializes a new instance of the DataDownloadConfig struct. More... | |
DataDownloadConfig (TickType tickType, SecurityType securityType, Resolution resolution, DateTime startDate, DateTime endDate, string market, List< Symbol > symbols) | |
Initializes a new instance of the DataDownloadConfig class with the specified parameters. More... | |
override string | ToString () |
Returns a string representation of the DataDownloadConfig struct. More... | |
Properties | |
TickType | TickType [get] |
Type of tick data to download. More... | |
SecurityType | SecurityType [get] |
Type of security for which data is to be downloaded. More... | |
Resolution | Resolution [get] |
Resolution of the downloaded data. More... | |
DateTime | StartDate [get] |
Start date for the data download. More... | |
DateTime | EndDate [get] |
End date for the data download. More... | |
string | MarketName [get] |
Market name for which the data is to be downloaded. More... | |
List< Symbol > | Symbols = new() [get] |
List of symbols for which data is to be downloaded. More... | |
Represents the configuration for data download.
Definition at line 28 of file DataDownloadConfig.cs.
QuantConnect.DownloaderDataProvider.Launcher.DataDownloadConfig.DataDownloadConfig | ( | ) |
Initializes a new instance of the DataDownloadConfig struct.
parameters | Dictionary containing the parameters for data download. |
Definition at line 69 of file DataDownloadConfig.cs.
QuantConnect.DownloaderDataProvider.Launcher.DataDownloadConfig.DataDownloadConfig | ( | TickType | tickType, |
SecurityType | securityType, | ||
Resolution | resolution, | ||
DateTime | startDate, | ||
DateTime | endDate, | ||
string | market, | ||
List< Symbol > | symbols | ||
) |
Initializes a new instance of the DataDownloadConfig class with the specified parameters.
tickType | The type of tick data to be downloaded. |
securityType | The type of security for which data is being downloaded. |
resolution | The resolution of the data being downloaded. |
startDate | The start date for the data download range. |
endDate | The end date for the data download range. |
market | The name of the market from which the data is being downloaded. |
symbols | A list of symbols for which data is being downloaded. |
Definition at line 109 of file DataDownloadConfig.cs.
override string QuantConnect.DownloaderDataProvider.Launcher.DataDownloadConfig.ToString | ( | ) |
Returns a string representation of the DataDownloadConfig struct.
Definition at line 124 of file DataDownloadConfig.cs.
|
get |
Type of tick data to download.
Definition at line 33 of file DataDownloadConfig.cs.
|
get |
Type of security for which data is to be downloaded.
Definition at line 38 of file DataDownloadConfig.cs.
|
get |
Resolution of the downloaded data.
Definition at line 43 of file DataDownloadConfig.cs.
|
get |
Start date for the data download.
Definition at line 48 of file DataDownloadConfig.cs.
|
get |
End date for the data download.
Definition at line 53 of file DataDownloadConfig.cs.
|
get |
Market name for which the data is to be downloaded.
Definition at line 58 of file DataDownloadConfig.cs.
|
get |
List of symbols for which data is to be downloaded.
Definition at line 63 of file DataDownloadConfig.cs.