Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add readonly for constants #10

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions CBOE.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXGOGCLS
/// Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string VIXOnGoogle = "VXGOGCLS";
public static readonly string VIXOnGoogle = "VXGOGCLS";

///<summary>
/// CBOE DJIA Volatility Index (in Index)
Expand All @@ -42,7 +42,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXDCLS
/// Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string VXD = "VXDCLS";
public static readonly string VXD = "VXDCLS";

///<summary>
/// CBOE Equity VIX on Goldman Sachs (in Index)
Expand All @@ -51,7 +51,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXGSCLS
/// Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string VIXOnGoldmanSachs = "VXGSCLS";
public static readonly string VIXOnGoldmanSachs = "VXGSCLS";

///<summary>
/// CBOE Equity VIX on IBM (in Index)
Expand All @@ -60,7 +60,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXIBMCLS
/// Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string VIXOnIBM = "VXIBMCLS";
public static readonly string VIXOnIBM = "VXIBMCLS";

///<summary>
/// CBOE Equity VIX on Amazon (in Index)
Expand All @@ -69,7 +69,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXAZNCLS
/// Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string VIXOnAmazon = "VXAZNCLS";
public static readonly string VIXOnAmazon = "VXAZNCLS";

///<summary>
/// CBOE S&amp;P 100 Volatility Index: VXO (in Index)
Expand All @@ -78,7 +78,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXOCLS
/// Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string VXO = "VXOCLS";
public static readonly string VXO = "VXOCLS";

///<summary>
/// CBOE NASDAQ 100 Volatility Index (in Index)
Expand All @@ -87,7 +87,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXNCLS
/// Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string VXN = "VXNCLS";
public static readonly string VXN = "VXNCLS";

///<summary>
/// CBOE 10-Year Treasury Note Volatility Futures (in Index)
Expand All @@ -96,7 +96,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXTYN
/// Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string TenYearTreasuryNoteVolatilityFutures = "VXTYN";
public static readonly string TenYearTreasuryNoteVolatilityFutures = "VXTYN";

///<summary>
/// CBOE Russell 2000 Volatility Index (in Index)
Expand All @@ -105,7 +105,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/RVXCLS
/// Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string RVX = "RVXCLS";
public static readonly string RVX = "RVXCLS";

///<summary>
/// CBOE S&amp;P 500 3-Month Volatility Index (in Index)
Expand All @@ -114,7 +114,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXVCLS
/// Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string SP500ThreeMonthVolatilityIndex = "VXVCLS";
public static readonly string SP500ThreeMonthVolatilityIndex = "VXVCLS";

///<summary>
/// CBOE Equity VIX on Apple (in Index)
Expand All @@ -123,7 +123,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXAPLCLS
/// Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string VIXOnApple = "VXAPLCLS";
public static readonly string VIXOnApple = "VXAPLCLS";

///<summary>
/// CBOE Gold Miners ETF Volatility Index (in Index)
Expand All @@ -132,7 +132,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXGDXCLS
/// Exchange Traded Funds (ETFs) are shares of trusts that hold portfolios of stocks designed to closely track the price performance and yield of specific indices. Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string GoldMinersETFVolatilityIndex = "VXGDXCLS";
public static readonly string GoldMinersETFVolatilityIndex = "VXGDXCLS";

///<summary>
/// CBOE China ETF Volatility Index (in Index)
Expand All @@ -141,7 +141,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXFXICLS
/// Exchange Traded Funds (ETFs) are shares of trusts that hold portfolios of stocks designed to closely track the price performance and yield of specific indices. Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string ChinaETFVolatilityIndex = "VXFXICLS";
public static readonly string ChinaETFVolatilityIndex = "VXFXICLS";

///<summary>
/// CBOE Brazil ETF Volatility Index (in Index)
Expand All @@ -150,7 +150,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXEWZCLS
/// Exchange Traded Funds (ETFs) are shares of trusts that hold portfolios of stocks designed to closely track the price performance and yield of specific indices. Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string BrazilETFVolatilityIndex = "VXEWZCLS";
public static readonly string BrazilETFVolatilityIndex = "VXEWZCLS";

///<summary>
/// CBOE Emerging Markets ETF Volatility Index (in Index)
Expand All @@ -159,7 +159,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXEEMCLS
/// Exchange Traded Funds (ETFs) are shares of trusts that hold portfolios of stocks designed to closely track the price performance and yield of specific indices. Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string EmergingMarketsETFVolatilityIndex = "VXEEMCLS";
public static readonly string EmergingMarketsETFVolatilityIndex = "VXEEMCLS";

///<summary>
/// CBOE EuroCurrency ETF Volatility Index (in Index)
Expand All @@ -168,7 +168,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/EVZCLS
/// Exchange Traded Funds (ETFs) are shares of trusts that hold portfolios of stocks designed to closely track the price performance and yield of specific indices. Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string EuroCurrencyETFVolatilityIndex = "EVZCLS";
public static readonly string EuroCurrencyETFVolatilityIndex = "EVZCLS";

///<summary>
/// CBOE Gold ETF Volatility Index (in Index)
Expand All @@ -177,7 +177,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/GVZCLS
/// Exchange Traded Funds (ETFs) are shares of trusts that hold portfolios of stocks designed to closely track the price performance and yield of specific indices. Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string GoldETFVolatilityIndex = "GVZCLS";
public static readonly string GoldETFVolatilityIndex = "GVZCLS";

///<summary>
/// CBOE Crude Oil ETF Volatility Index (in Index)
Expand All @@ -186,7 +186,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/OVXCLS
/// Exchange Traded Funds (ETFs) are shares of trusts that hold portfolios of stocks designed to closely track the price performance and yield of specific indices. Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string CrudeOilETFVolatilityIndex = "OVXCLS";
public static readonly string CrudeOilETFVolatilityIndex = "OVXCLS";

///<summary>
/// CBOE Silver ETF Volatility Index (in Index)
Expand All @@ -195,7 +195,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXSLVCLS
/// Exchange Traded Funds (ETFs) are shares of trusts that hold portfolios of stocks designed to closely track the price performance and yield of specific indices. Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string SilverETFVolatilityIndex = "VXSLVCLS";
public static readonly string SilverETFVolatilityIndex = "VXSLVCLS";

///<summary>
/// CBOE Energy Sector ETF Volatility Index (in Index)
Expand All @@ -204,7 +204,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VXXLECLS
/// Exchange Traded Funds (ETFs) are shares of trusts that hold portfolios of stocks designed to closely track the price performance and yield of specific indices. Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string EnergySectorETFVolatilityIndex = "VXXLECLS";
public static readonly string EnergySectorETFVolatilityIndex = "VXXLECLS";

///<summary>
/// CBOE Volatility Index: VIX (in Index)
Expand All @@ -213,7 +213,7 @@ public static class CBOE
/// Retrieved from FRED, Federal Reserve Bank of St. Louis; https://fred.stlouisfed.org/series/VIXCLS
/// VIX measures market expectation of near term volatility conveyed by stock index option prices. Copyright, 2016, Chicago Board Options Exchange, Inc. Reprinted with permission.
/// </remarks>
public static string VIX = "VIXCLS";
public static readonly string VIX = "VIXCLS";
}
}
}
Loading
Loading