/* * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals. * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ using QuantConnect.Data.UniverseSelection; namespace QuantConnect.DownloaderDataProvider.Launcher.Models; /// /// Represents the configuration for downloading data for a universe of securities. /// public sealed class DataUniverseDownloadConfig : BaseDataDownloadConfig { /// /// Gets the type of data universe download. /// public override Type DataType { get; } /// /// Initializes a new instance of the class using configuration settings. /// /// Thrown when an unsupported security type is specified. public DataUniverseDownloadConfig() { Resolution = Resolution.Daily; DataType = GetDataUniverseType(SecurityType); } /// /// Retrieves the corresponding data universe type based on the specified security type. /// /// The security type for which the data universe type is determined. /// The corresponding of the data universe. /// /// Thrown when the specified is not supported. /// private static Type GetDataUniverseType(SecurityType securityType) { switch (securityType) { case SecurityType.Option: case SecurityType.IndexOption: return typeof(OptionUniverse); default: throw new NotImplementedException($"DataUniverseDownloadConfig.GetDataUniverseType(): The data universe type for SecurityType '{securityType}' is not implemented."); } } }