/* * 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. */ namespace QuantConnect.Data.Custom.Intrinio { /// /// Intrinio Data Source /// public static class IntrinioEconomicDataSources { /// /// Bank of America Merrill Lynch /// public static class BofAMerrillLynch { /// /// This data represents the effective yield of the BofA Merrill Lynch US Corporate BBB Index, a subset of the BofA /// Merrill Lynch US Corporate Master Index tracking the performance of US dollar denominated investment grade rated /// corporate debt publically issued in the US domestic market. /// /// /// Source: https://fred.stlouisfed.org/series/BAMLC0A4CBBBEY /// public const string USCorporateBBBEffectiveYield = "$BAMLC0A4CBBBEY"; /// /// This data represents the Option-Adjusted Spread (OAS) of the BofA Merrill Lynch US Corporate BBB Index, a subset of /// the BofA Merrill Lynch US Corporate Master Index tracking the performance of US dollar denominated investment grade /// rated corporate debt publically issued in the US domestic market. /// /// /// Source: https://fred.stlouisfed.org/series/BAMLC0A4CBBB /// public const string USCorporateBBBOptionAdjustedSpread = "$BAMLC0A4CBBB"; /// /// The BofA Merrill Lynch Option-Adjusted Spreads (OASs) are the calculated spreads between a computed OAS index of /// all bonds in a given rating category and a spot Treasury curve. An OAS index is constructed using each constituent /// bond’s OAS, weighted by market capitalization. /// /// /// Source: https://fred.stlouisfed.org/series/BAMLC0A0CM /// public const string USCorporateMasterOptionAdjustedSpread = "$BAMLC0A0CM"; /// /// This data represents the Option-Adjusted Spread (OAS) of the BofA Merrill Lynch US Corporate BB Index, a subset of /// the BofA Merrill Lynch US High Yield Master II Index tracking the performance of US dollar denominated below /// investment grade rated corporate debt publically issued in the US domestic market. /// /// /// Source: https://fred.stlouisfed.org/series/BAMLH0A1HYBB /// public const string USHighYieldBBOptionAdjustedSpread = "$BAMLH0A1HYBB"; /// /// This data represents the Option-Adjusted Spread (OAS) of the BofA Merrill Lynch US Corporate B Index, a subset of /// the BofA Merrill Lynch US High Yield Master II Index tracking the performance of US dollar denominated below /// investment grade rated corporate debt publically issued in the US domestic market. This subset includes all /// securities with a given investment grade rating B. /// /// /// Source: https://fred.stlouisfed.org/series/BAMLH0A2HYB /// public const string USHighYieldBOptionAdjustedSpread = "$BAMLH0A2HYB"; /// /// This data represents the Option-Adjusted Spread (OAS) of the BofA Merrill Lynch US Corporate C Index, a subset of /// the BofA Merrill Lynch US High Yield Master II Index tracking the performance of US dollar denominated below /// investment grade rated corporate debt publically issued in the US domestic market. /// /// /// Source: https://fred.stlouisfed.org/series/BAMLH0A3HYC /// public const string USHighYieldCCCorBelowOptionAdjustedSpread = "$BAMLH0A3HYC"; /// /// This data represents the effective yield of the BofA Merrill Lynch US High Yield Master II Index, which tracks the /// performance of US dollar denominated below investment grade rated corporate debt publically issued in the US /// domestic market. /// Source: https://fred.stlouisfed.org/series/BAMLH0A0HYM2EY /// public const string USHighYieldEffectiveYield = "$BAMLH0A0HYM2EY"; /// /// This data represents the BofA Merrill Lynch US High Yield Master II Index value, which tracks the performance of US /// dollar denominated below investment grade rated corporate debt publically issued in the US domestic market. /// /// /// Source: https://fred.stlouisfed.org/series/BAMLHYH0A0HYM2TRIV /// public const string USHighYieldMasterIITotalReturnIndexValue = "$BAMLHYH0A0HYM2TRIV"; /// /// The BofA Merrill Lynch Option-Adjusted Spreads (OASs) are the calculated spreads between a computed OAS index of /// all bonds in a given rating category and a spot Treasury curve. An OAS index is constructed using each constituent /// bond’s OAS, weighted by market capitalization. /// Source: https://fred.stlouisfed.org/series/BAMLH0A0HYM2 /// public const string USHighYieldOptionAdjustedSpread = "$BAMLH0A0HYM2"; } /// /// Chicago Board Options Exchange /// public static class CBOE { /// /// CBOE China ETF Volatility Index /// /// /// Source: https://fred.stlouisfed.org/series/VXFXICLS /// public const string ChinaETFVolatilityIndex = "$VXFXICLS"; /// /// CBOE Crude Oil ETF Volatility Index /// /// /// Source: https://fred.stlouisfed.org/series/OVXCLS /// public const string CrudeOilETFVolatilityIndex = "$OVXCLS"; /// /// CBOE Emerging Markets ETF Volatility Index /// /// /// Source: https://fred.stlouisfed.org/series/VXEEMCLS /// public const string EmergingMarketsETFVolatilityIndex = "$VXEEMCLS"; /// /// CBOE Gold ETF Volatility Index /// /// /// Source: https://fred.stlouisfed.org/series/GVZCLS /// public const string GoldETFVolatilityIndex = "$GVZCLS"; /// /// CBOE 10-Year Treasury Note Volatility Futures /// /// /// Source: https://fred.stlouisfed.org/series/VXTYN /// public const string TenYearTreasuryNoteVolatilityFutures = "$VXTYN"; /// /// CBOE Volatility Index: VIX /// /// /// Source: https://fred.stlouisfed.org/series/VIXCLS /// public const string VIX = "$VIXCLS"; /// /// CBOE S&P 100 Volatility Index: VXO /// /// /// Source: https://fred.stlouisfed.org/series/VXOCLS /// public const string VXO = "$VXOCLS"; /// /// CBOE S&P 500 3-Month Volatility Index /// /// /// Source: https://fred.stlouisfed.org/series/VXVCLS /// public const string VXV = "$VXVCLS"; } /// /// Commodities /// public static class Commodities { /// /// Crude Oil Prices: Brent - Europe /// /// /// Source: https://fred.stlouisfed.org/series/DCOILBRENTEU /// public const string CrudeOilBrent = "$DCOILBRENTEU"; /// /// Crude Oil Prices: West Texas Intermediate (WTI) - Cushing, Oklahoma /// /// /// Source: https://fred.stlouisfed.org/series/DCOILWTICO /// public const string CrudeOilWTI = "$DCOILWTICO"; /// /// Conventional Gasoline Prices: U.S. Gulf Coast, Regular /// /// /// Source: https://fred.stlouisfed.org/series/DGASUSGULF /// public const string GasolineUSGulfCoast = "$DGASUSGULF"; /// /// Gold Fixing Price 10:30 A.M. (London time) in London Bullion Market, based in U.S. Dollars /// /// /// Source: https://fred.stlouisfed.org/series/GOLDAMGBD228NLBM /// public const string GoldFixingPrice1030amLondon = "$GOLDAMGBD228NLBM"; /// /// Gold Fixing Price 3:00 P.M. (London time) in London Bullion Market, based in U.S. Dollars /// /// /// Source: https://fred.stlouisfed.org/series/GOLDPMGBD228NLBM /// public const string GoldFixingPrice1500amLondon = "$GOLDPMGBD228NLBM"; /// /// Henry Hub Natural Gas Spot Price /// /// /// Source: https://fred.stlouisfed.org/series/DHHNGSP /// public const string NaturalGas = "$DHHNGSP"; /// /// Propane Prices: Mont Belvieu, Texas /// /// /// Source: https://fred.stlouisfed.org/series/DPROPANEMBTX /// public const string Propane = "$DPROPANEMBTX"; } /// /// Exchange Rates /// public static class ExchangeRates { /// /// Brazilian Reals to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string Brazil_USA = "$DEXBZUS"; /// /// Canadian Dollars to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string Canada_USA = "$DEXCAUS"; /// /// Chinese Yuan to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string China_USA = "$DEXCHUS"; /// /// Hong Kong Dollars to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string HongKong_USA = "$DEXHKUS"; /// /// Indian Rupees to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string India_USA = "$DEXINUS"; /// /// Japanese Yen to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string Japan_USA = "$DEXJPUS"; /// /// Malaysian Ringgit to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string Malaysia_USA = "$DEXMAUS"; /// /// Mexican New Pesos to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string Mexico_USA = "$DEXMXUS"; /// /// Norwegian Kroner to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string Norway_USA = "$DEXNOUS"; /// /// Singapore Dollars to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string Singapore_USA = "$DEXSIUS"; /// /// South African Rand to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string SouthAfrica_USA = "$DEXSFUS"; /// /// South Korean Won to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string SouthKorea_USA = "$DEXKOUS"; /// /// Sri Lankan Rupees to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string SriLanka_USA = "$DEXSLUS"; /// /// Swiss Francs to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string Switzerland_USA = "$DEXSZUS"; /// /// New Taiwan Dollars to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string Taiwan_USA = "$DEXTAUS"; /// /// Thai Baht to One U.S. Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string Thailand_USA = "$DEXTHUS"; /// /// U.S. Dollars to One Australian Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string USA_Australia = "$DEXUSAL"; /// /// U.S. Dollars to One Euro /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string USA_Euro = "$DEXUSEU"; /// /// U.S. Dollars to One New Zealand Dollar /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string USA_NewZealand = "$DEXUSNZ"; /// /// U.S. Dollars to One British Pound /// /// /// Source: Board of Governors of the Federal Reserve System https://www.federalreserve.gov/releases/h10/ /// public const string USA_UK = "$DEXUSUK"; } /// /// Moody's Investors Service /// public static class Moodys { /// /// Moody's Seasoned Aaa Corporate Bond© and 10-Year Treasury Constant Maturity. /// These instruments are based on bonds with maturities 20 years and above. /// /// /// Source: https://fred.stlouisfed.org/series/DAAA /// public const string SeasonedAaaCorporateBondYield = "$DAAA"; /// /// Series is calculated as the spread between Moody's Seasoned Aaa Corporate Bond© and 10-Year Treasury Constant /// Maturity /// /// /// Source: https://fred.stlouisfed.org/series/AAA10Y /// public const string SeasonedAaaCorporateBondYieldRelativeTo10YearTreasuryConstantMaturity = "$AAA10Y"; /// /// Moody's Seasoned Baa Corporate Bond© and 10-Year Treasury Constant Maturity. /// These instruments are based on bonds with maturities 20 years and above. /// /// /// Source: https://fred.stlouisfed.org/series/DBAA /// public const string SeasonedBaaCorporateBondYield = "$DBAA"; /// /// Series is calculated as the spread between Moody's Seasoned Baa Corporate Bond© and 10-Year Treasury Constant Maturity /// /// /// Source: https://fred.stlouisfed.org/series/BAA10Y /// public const string SeasonedBaaCorporateBondYieldRelativeTo10YearTreasuryConstantMaturity = "$BAA10Y"; } /// /// Trade Weighted US Dollar Index /// public static class TradeWeightedUsDollarIndex { /// /// A weighted average of the foreign exchange value of the U.S. dollar against the currencies of a broad group of /// major U.S. trading partners. Broad currency index includes the Euro Area, Canada, Japan, Mexico, China, United /// Kingdom, Taiwan, Korea, Singapore, Hong Kong, Malaysia, Brazil, Switzerland, Thailand, Philippines, Australia, /// Indonesia, India, Israel, Saudi Arabia, Russia, Sweden, Argentina, Venezuela, Chile and Colombia. /// /// /// Source: https://fred.stlouisfed.org/series/DTWEXB /// For more information about trade-weighted indexes see /// http://www.federalreserve.gov/pubs/bulletin/2005/winter05_index.pdf. /// public const string Broad = "$DTWEXB"; /// /// A weighted average of the foreign exchange value of the U.S. dollar against a subset of the broad index currencies /// that circulate widely outside the country of issue. Major currencies index includes the Euro Area, Canada, Japan, /// United Kingdom, Switzerland, Australia, and Sweden. /// /// /// Source: https://fred.stlouisfed.org/series/DTWEXM /// For more information about trade-weighted indexes see /// http://www.federalreserve.gov/pubs/bulletin/2005/winter05_index.pdf. /// public const string MajorCurrencies = "$DTWEXM"; /// /// A weighted average of the foreign exchange value of the U.S. dollar against a subset of the broad index currencies /// that do not circulate widely outside the country of issue. Countries whose currencies are included in the other /// important trading partners index are Mexico, China, Taiwan, Korea, Singapore, Hong Kong, Malaysia, Brazil, /// Thailand, Philippines, Indonesia, India, Israel, Saudi Arabia, Russia, Argentina, Venezuela, Chile and Colombia. /// /// /// Source: https://fred.stlouisfed.org/series/DTWEXO /// For more information about trade-weighted indexes see /// http://www.federalreserve.gov/pubs/bulletin/2005/winter05_index.pdf. /// public const string OtherImportantTradingPartners = "$DTWEXO"; } } }