Lean  $LEAN_TAG$
CrisisEvent.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 namespace QuantConnect.Report
17 {
18  /// <summary>
19  /// Crisis Events
20  /// </summary>
21  public enum CrisisEvent
22  {
23  /// <summary>
24  /// DotCom bubble - https://en.wikipedia.org/wiki/Dot-com_bubble (0)
25  /// </summary>
26  DotCom,
27 
28  /// <summary>
29  /// September 11, 2001 attacks - https://en.wikipedia.org/wiki/September_11_attacks (1)
30  /// </summary>
32 
33  /// <summary>
34  /// United States housing bubble - https://en.wikipedia.org/wiki/United_States_housing_bubble (2)
35  /// </summary>
37 
38  /// <summary>
39  /// https://en.wikipedia.org/wiki/Financial_crisis_of_2007%E2%80%9308 (3)
40  /// </summary>
42 
43  /// <summary>
44  /// The flash crash of 2010 - https://en.wikipedia.org/wiki/2010_Flash_Crash (4)
45  /// </summary>
46  FlashCrash,
47 
48  /// <summary>
49  /// Fukushima nuclear power plant meltdown - https://en.wikipedia.org/wiki/Fukushima_Daiichi_nuclear_disaster (5)
50  /// </summary>
52 
53  /// <summary>
54  /// United States credit rating downgrade - https://en.wikipedia.org/wiki/United_States_federal_government_credit-rating_downgrades
55  /// European debt crisis - https://en.wikipedia.org/wiki/European_debt_crisis (6)
56  /// </summary>
58 
59  /// <summary>
60  /// European debt crisis - https://en.wikipedia.org/wiki/European_debt_crisis (7)
61  /// </summary>
63 
64  /// <summary>
65  /// European debt crisis - https://en.wikipedia.org/wiki/European_debt_crisis (8)
66  /// </summary>
68 
69  /// <summary>
70  /// 2015-2016 market sell off https://en.wikipedia.org/wiki/2015%E2%80%9316_stock_market_selloff (9)
71  /// </summary>
73 
74  /// <summary>
75  /// Crisis recovery (2010 - 2012) (10)
76  /// </summary>
77  Recovery,
78 
79  /// <summary>
80  /// 2014 - 2019 market performance (11)
81  /// </summary>
82  NewNormal,
83 
84  /// <summary>
85  /// COVID-19 pandemic market crash (12)
86  /// </summary>
87  COVID19,
88 
89  /// <summary>
90  /// Post COVID-19 recovery (13)
91  /// </summary>
93 
94  /// <summary>
95  /// Meme-craze era like GME, AMC, and DOGE (14)
96  /// </summary>
97  MemeSeason,
98 
99  /// <summary>
100  /// Russia invased Ukraine (15)
101  /// </summary>
103 
104  /// <summary>
105  /// Artificial intelligence boom (16)
106  /// </summary>
107  AIBoom
108  }
109 }