|
Lean
$LEAN_TAG$
|
Represents the configuration for downloading data. More...
Public Member Functions | |
| DataDownloadConfig () | |
| Initializes a new instance of the DataDownloadConfig class. More... | |
| DataDownloadConfig (TickType tickType, SecurityType securityType, Resolution resolution, DateTime startDate, DateTime endDate, string marketName, List< Symbol > symbols) | |
| Initializes a new instance of the DataDownloadConfig class with the specified parameters. More... | |
Properties | |
| override Type | DataType [get] |
| Gets the type of data download. More... | |
Properties inherited from BaseDataDownloadConfig | |
| DateTime | StartDate [get, set] |
| Gets the start date for the data download. More... | |
| DateTime | EndDate [get, set] |
| Gets the end date for the data download. More... | |
| Resolution | Resolution [get, protected set] |
| Gets or sets the resolution of the downloaded data. More... | |
| string | MarketName [get, protected set] |
| Gets or sets the market name for which the data will be downloaded. More... | |
| SecurityType | SecurityType [get, set] |
| Gets the type of security for which the data is being downloaded. More... | |
| TickType | TickType [get, protected set] |
| Gets or sets the type of tick data to be downloaded. More... | |
| abstract Type | DataType [get] |
| The type of data based on TickTypes More... | |
| IReadOnlyCollection< Symbol > | Symbols = [] [get, protected set] |
| Gets the list of symbols for which the data will be downloaded. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from BaseDataDownloadConfig | |
| BaseDataDownloadConfig () | |
| Initializes a new instance of the BaseDataDownloadConfig class. More... | |
| BaseDataDownloadConfig (TickType tickType, SecurityType securityType, Resolution resolution, DateTime startDate, DateTime endDate, string marketName, List< Symbol > symbols) | |
| Initializes a new instance of the DataDownloadConfig class with the specified parameters. More... | |
Static Protected Member Functions inherited from BaseDataDownloadConfig | |
| static DateTime | ParseDate (string date) |
| Parses a string to a DateTime using a specific date format. More... | |
| static TEnum | ParseEnum< TEnum > (string value) |
| Parses a string value into an enum of the specified type. More... | |
Represents the configuration for downloading data.
Definition at line 26 of file DataDownloadConfig.cs.
| DataDownloadConfig.DataDownloadConfig | ( | ) |
Initializes a new instance of the DataDownloadConfig class.
s
Definition at line 36 of file DataDownloadConfig.cs.
| DataDownloadConfig.DataDownloadConfig | ( | TickType | tickType, |
| SecurityType | securityType, | ||
| Resolution | resolution, | ||
| DateTime | startDate, | ||
| DateTime | endDate, | ||
| string | marketName, | ||
| 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. |
| marketName | 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 52 of file DataDownloadConfig.cs.
|
get |
Gets the type of data download.
Definition at line 31 of file DataDownloadConfig.cs.