Lean  $LEAN_TAG$
MetalsETFUniverse.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 Metals ETFs at their inception date
23  /// 2004-11-18 GLD SPDR Gold Trust
24  /// 2005-01-28 IAU iShares Gold Trust
25  /// 2006-04-28 SLV iShares Silver Trust
26  /// 2006-05-22 GDX VanEck Vectors Gold Miners ETF
27  /// 2008-12-04 AGQ ProShares Ultra Silver
28  /// 2009-11-11 GDXJ VanEck Vectors Junior Gold Miners ETF
29  /// 2010-01-08 PPLT Aberdeen Standard Platinum Shares ETF
30  /// 2010-12-08 NUGT Direxion Daily Gold Miners Bull 3X Shares
31  /// 2010-12-08 DUST Direxion Daily Gold Miners Bear 3X Shares
32  /// 2011-10-17 USLV VelocityShares 3x Long Silver ETN
33  /// 2011-10-17 UGLD VelocityShares 3x Long Gold ETN
34  /// 2013-10-03 JNUG Direxion Daily Junior Gold Miners Index Bull 3x Shares
35  /// 2013-10-03 JDST Direxion Daily Junior Gold Miners Index Bear 3X Shares
36  /// </summary>
38  {
39  /// <summary>
40  /// Initializes a new instance of the MetalsETFUniverse class
41  /// </summary>
42  public MetalsETFUniverse() :
43  base(
44  "qc-metals-etf-basket",
45  new Dictionary<string, DateTime>()
46  {
47  {"GLD", new DateTime(2004, 11, 18)},
48  {"IAU", new DateTime(2005, 1, 28)},
49  {"SLV", new DateTime(2006, 4, 28)},
50  {"GDX", new DateTime(2006, 5, 22)},
51  {"AGQ", new DateTime(2008, 12, 4)},
52  {"GDXJ", new DateTime(2009, 11, 11)},
53  {"PPLT", new DateTime(2010, 1, 8)},
54  {"NUGT", new DateTime(2010, 12, 8)},
55  {"DUST", new DateTime(2010, 12, 8)},
56  {"USLV", new DateTime(2011, 10, 17)},
57  {"UGLD", new DateTime(2011, 10, 17)},
58  {"JNUG", new DateTime(2013, 10, 3)},
59  {"JDST", new DateTime(2013, 10, 3)}
60  }
61  )
62  {
63 
64  }
65  }
66 }