Lean  $LEAN_TAG$
VolatilityETFUniverse.cs
1 /*
2  * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
3  * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14 */
15 
16 using System;
17 using System.Collections.Generic;
18 
20 {
21  /// <summary>
22  /// Universe Selection Model that adds the following Volatility ETFs at their inception date
23  /// 2010-02-11 SQQQ ProShares UltraPro ShortQQQ
24  /// 2010-02-11 TQQQ ProShares UltraProQQQ
25  /// 2010-11-30 TVIX VelocityShares Daily 2x VIX Short Term ETN
26  /// 2011-01-04 VIXY ProShares VIX Short-Term Futures ETF
27  /// 2011-05-05 SPLV Invesco S&amp;P 500® Low Volatility ETF
28  /// 2011-10-04 SVXY ProShares Short VIX Short-Term Futures
29  /// 2011-10-04 UVXY ProShares Ultra VIX Short-Term Futures
30  /// 2011-10-20 EEMV iShares Edge MSCI Min Vol Emerging Markets ETF
31  /// 2011-10-20 EFAV iShares Edge MSCI Min Vol EAFE ETF
32  /// 2011-10-20 USMV iShares Edge MSCI Min Vol USA ETF
33  /// </summary>
35  {
36  /// <summary>
37  /// Initializes a new instance of the VolatilityETFUniverse class
38  /// </summary>
40  base(
41  "qc-volatility-etf-basket",
42  new Dictionary<string, DateTime>()
43  {
44  {"SQQQ", new DateTime(2010, 2, 11)},
45  {"TQQQ", new DateTime(2010, 2, 11)},
46  {"TVIX", new DateTime(2010, 11, 30)},
47  {"VIXY", new DateTime(2011, 1, 4)},
48  {"SPLV", new DateTime(2011, 5, 5)},
49  {"SVXY", new DateTime(2011, 10, 4)},
50  {"UVXY", new DateTime(2011, 10, 4)},
51  {"EEMV", new DateTime(2011, 10, 20)},
52  {"EFAV", new DateTime(2011, 10, 20)},
53  {"USMV", new DateTime(2011, 10, 20)}
54  }
55  )
56  {
57 
58  }
59  }
60 }