diff --git a/Common/Securities/Future/Futures.cs b/Common/Securities/Future/Futures.cs
index 3e666d5be006..cf3c664edfdf 100644
--- a/Common/Securities/Future/Futures.cs
+++ b/Common/Securities/Future/Futures.cs
@@ -1357,6 +1357,18 @@ public static class Financials
///
/// The symbol
public const string MicroY5TreasuryBond = "5YY";
+
+ ///
+ /// Micro Ultra 10-Year U.S. Treasury Note Futures
+ ///
+ /// The symbol
+ public const string MicroUltraTenYearUSTreasuryNote = "MTN";
+
+ ///
+ /// Micro Ultra U.S. Treasury Bond Futures
+ ///
+ /// The symbol
+ public const string MicroUltraUSTreasuryBond = "MWN";
}
///
@@ -1794,6 +1806,11 @@ public static class Metals
/// Silver 5000 Oz Futures
///
public const string Silver5000Oz = "ZI";
+
+ ///
+ /// 1-Ounce Gold Futures
+ ///
+ public const string OneOunceGold = "1OZ";
}
///
diff --git a/Common/Securities/Future/FuturesExpiryFunctions.cs b/Common/Securities/Future/FuturesExpiryFunctions.cs
index d06c4eac3b35..3337820b8422 100644
--- a/Common/Securities/Future/FuturesExpiryFunctions.cs
+++ b/Common/Securities/Future/FuturesExpiryFunctions.cs
@@ -58,6 +58,24 @@ public static Func FuturesExpiryFunction(Symbol symbol)
return FuturesExpiryUtilityFunctions.NthLastBusinessDay(time,3, holidays);
})
},
+ // 1-Ounce Gold (1OZ): https://www.cmegroup.com/markets/metals/precious/1-ounce-gold.contractSpecs.html
+ {Symbol.Create(Futures.Metals.OneOunceGold, SecurityType.Future, Market.COMEX), (time =>
+ {
+ var market = Market.COMEX;
+ var symbol = Futures.Metals.OneOunceGold;
+ var holidays = FuturesExpiryUtilityFunctions.GetExpirationHolidays(market, symbol);
+ // Bi-monthly contracts (Feb/2, Apr/4, Jun/6, Aug/8, Oct/10, Dec/12 cycle)
+ while (!FutureExpirationCycles.GJMQVZ.Contains(time.Month))
+ {
+ time = time.AddMonths(1);
+ }
+
+ // This contract is cash settled, so it stops trading before the contract month even starts.
+ // Trading terminates on the third last business day of the month prior to the contract month.
+ var previousMonth = time.AddMonths(-1);
+ return FuturesExpiryUtilityFunctions.NthLastBusinessDay(previousMonth, 3, holidays);
+ })
+ },
// Silver (SI): http://www.cmegroup.com/trading/metals/precious/silver_contract_specifications.html
{Symbol.Create(Futures.Metals.Silver, SecurityType.Future, Market.COMEX), (time =>
{
@@ -1674,6 +1692,48 @@ public static Func FuturesExpiryFunction(Symbol symbol)
return FuturesExpiryUtilityFunctions.NthLastBusinessDay(time, 8, holidays);
})
},
+ // Micro Ultra 10-Year U.S. Treasury Note (MTN): https://www.cmegroup.com/markets/interest-rates/us-treasury/micro-ultra-10-year-us-treasury-note.contractSpecs.html
+ {Symbol.Create(Futures.Financials.MicroUltraTenYearUSTreasuryNote, SecurityType.Future, Market.CBOT), (time =>
+ {
+ var market = Market.CBOT;
+ var symbol = Futures.Financials.MicroUltraTenYearUSTreasuryNote;
+ var holidays = FuturesExpiryUtilityFunctions.GetExpirationHolidays(market, symbol);
+
+ // Quarterly contracts (Mar, Jun, Sep, Dec), the same cycle as the Ultra 10-Year (TN)
+ while (!FutureExpirationCycles.HMUZ.Contains(time.Month))
+ {
+ time = time.AddMonths(1);
+ }
+
+ // This contract is cash settled against TN instead of delivering notes, so it stops
+ // trading earlier than TN does.
+ // Trading terminates 2 business days before the first delivery day of the contract
+ // month. The first delivery day is the first business day of that month.
+ var firstDeliveryDay = FuturesExpiryUtilityFunctions.NthBusinessDay(time, 1, holidays);
+ return FuturesExpiryUtilityFunctions.AddBusinessDays(firstDeliveryDay, -2, holidays);
+ })
+ },
+ // Micro Ultra U.S. Treasury Bond (MWN): https://www.cmegroup.com/markets/interest-rates/us-treasury/micro-ultra-us-treasury-bond.contractSpecs.html
+ {Symbol.Create(Futures.Financials.MicroUltraUSTreasuryBond, SecurityType.Future, Market.CBOT), (time =>
+ {
+ var market = Market.CBOT;
+ var symbol = Futures.Financials.MicroUltraUSTreasuryBond;
+ var holidays = FuturesExpiryUtilityFunctions.GetExpirationHolidays(market, symbol);
+
+ // Quarterly contracts (Mar, Jun, Sep, Dec), the same cycle as the Ultra Bond (UB)
+ while (!FutureExpirationCycles.HMUZ.Contains(time.Month))
+ {
+ time = time.AddMonths(1);
+ }
+
+ // This contract is cash settled against UB instead of delivering bonds, so it stops
+ // trading earlier than UB does.
+ // Trading terminates 2 business days before the first delivery day of the contract
+ // month. The first delivery day is the first business day of that month.
+ var firstDeliveryDay = FuturesExpiryUtilityFunctions.NthBusinessDay(time, 1, holidays);
+ return FuturesExpiryUtilityFunctions.AddBusinessDays(firstDeliveryDay, -2, holidays);
+ })
+ },
// Energy group
// Propane Non LDH Mont Belvieu (1S): https://www.cmegroup.com/trading/energy/petrochemicals/propane-non-ldh-mt-belvieu-opis-balmo-swap_contract_specifications.html
{Symbol.Create(Futures.Energy.PropaneNonLDHMontBelvieu, SecurityType.Future, Market.NYMEX), (time =>
diff --git a/Data/market-hours/market-hours-database.json b/Data/market-hours/market-hours-database.json
index 172901a32c69..373f8814ea9d 100644
--- a/Data/market-hours/market-hours-database.json
+++ b/Data/market-hours/market-hours-database.json
@@ -55218,6 +55218,1150 @@
"11/26/2026"
]
},
+ "Future-cbot-MTN": {
+ "dataTimeZone": "UTC",
+ "exchangeTimeZone": "America/Chicago",
+ "sunday": [
+ {
+ "start": "17:00:00",
+ "end": "1.00:00:00",
+ "state": "premarket"
+ }
+ ],
+ "monday": [
+ {
+ "start": "00:00:00",
+ "end": "08:30:00",
+ "state": "premarket"
+ },
+ {
+ "start": "08:30:00",
+ "end": "16:00:00",
+ "state": "market"
+ },
+ {
+ "start": "17:00:00",
+ "end": "1.00:00:00",
+ "state": "postmarket"
+ }
+ ],
+ "tuesday": [
+ {
+ "start": "00:00:00",
+ "end": "08:30:00",
+ "state": "premarket"
+ },
+ {
+ "start": "08:30:00",
+ "end": "16:00:00",
+ "state": "market"
+ },
+ {
+ "start": "17:00:00",
+ "end": "1.00:00:00",
+ "state": "postmarket"
+ }
+ ],
+ "wednesday": [
+ {
+ "start": "00:00:00",
+ "end": "08:30:00",
+ "state": "premarket"
+ },
+ {
+ "start": "08:30:00",
+ "end": "16:00:00",
+ "state": "market"
+ },
+ {
+ "start": "17:00:00",
+ "end": "1.00:00:00",
+ "state": "postmarket"
+ }
+ ],
+ "thursday": [
+ {
+ "start": "00:00:00",
+ "end": "08:30:00",
+ "state": "premarket"
+ },
+ {
+ "start": "08:30:00",
+ "end": "16:00:00",
+ "state": "market"
+ },
+ {
+ "start": "17:00:00",
+ "end": "1.00:00:00",
+ "state": "postmarket"
+ }
+ ],
+ "friday": [
+ {
+ "start": "00:00:00",
+ "end": "08:30:00",
+ "state": "premarket"
+ },
+ {
+ "start": "08:30:00",
+ "end": "16:00:00",
+ "state": "market"
+ }
+ ],
+ "saturday": [],
+ "holidays": [
+ "12/25/2026",
+ "1/1/2027"
+ ],
+ "lateOpens": {
+ "1/19/2009": "17:00:00",
+ "2/16/2009": "17:00:00",
+ "5/25/2009": "17:00:00",
+ "9/7/2009": "17:00:00",
+ "11/26/2009": "17:00:00",
+ "1/18/2010": "17:00:00",
+ "2/15/2010": "17:00:00",
+ "5/31/2010": "17:00:00",
+ "7/5/2010": "17:00:00",
+ "9/6/2010": "17:00:00",
+ "11/25/2010": "17:00:00",
+ "1/17/2011": "17:00:00",
+ "2/21/2011": "17:00:00",
+ "5/30/2011": "17:00:00",
+ "7/4/2011": "17:00:00",
+ "9/5/2011": "17:00:00",
+ "11/24/2011": "17:00:00",
+ "1/16/2012": "17:00:00",
+ "2/20/2012": "17:00:00",
+ "5/28/2012": "17:00:00",
+ "7/4/2012": "17:00:00",
+ "9/3/2012": "17:00:00",
+ "11/22/2012": "17:00:00",
+ "1/21/2013": "17:00:00",
+ "2/18/2013": "17:00:00",
+ "5/27/2013": "17:00:00",
+ "7/4/2013": "17:00:00",
+ "9/2/2013": "17:00:00",
+ "11/28/2013": "17:00:00",
+ "1/20/2014": "17:00:00",
+ "2/17/2014": "17:00:00",
+ "5/26/2014": "17:00:00",
+ "9/1/2014": "17:00:00",
+ "11/27/2014": "17:00:00",
+ "1/19/2015": "17:00:00",
+ "2/16/2015": "17:00:00",
+ "5/25/2015": "17:00:00",
+ "9/7/2015": "17:00:00",
+ "11/26/2015": "17:00:00",
+ "1/18/2016": "17:00:00",
+ "2/15/2016": "17:00:00",
+ "5/30/2016": "17:00:00",
+ "7/4/2016": "17:00:00",
+ "9/5/2016": "17:00:00",
+ "11/24/2016": "17:00:00",
+ "1/16/2017": "17:00:00",
+ "2/20/2017": "17:00:00",
+ "5/29/2017": "17:00:00",
+ "7/4/2017": "17:00:00",
+ "9/4/2017": "17:00:00",
+ "11/23/2017": "17:00:00",
+ "1/15/2018": "17:00:00",
+ "2/19/2018": "17:00:00",
+ "5/28/2018": "17:00:00",
+ "7/4/2018": "17:00:00",
+ "9/3/2018": "17:00:00",
+ "11/22/2018": "17:00:00",
+ "1/21/2019": "17:00:00",
+ "2/18/2019": "17:00:00",
+ "5/27/2019": "17:00:00",
+ "7/4/2019": "17:00:00",
+ "9/2/2019": "17:00:00",
+ "11/28/2019": "17:00:00",
+ "1/20/2020": "17:00:00",
+ "2/17/2020": "17:00:00",
+ "5/25/2020": "17:00:00",
+ "7/3/2020": "17:00:00",
+ "9/7/2020": "17:00:00",
+ "11/26/2020": "17:00:00",
+ "1/18/2021": "17:00:00",
+ "2/15/2021": "17:00:00",
+ "5/31/2021": "17:00:00",
+ "7/5/2021": "17:00:00",
+ "9/6/2021": "17:00:00",
+ "11/25/2021": "17:00:00",
+ "1/17/2022": "17:00:00",
+ "2/21/2022": "17:00:00",
+ "5/30/2022": "17:00:00",
+ "6/20/2022": "17:00:00",
+ "7/4/2022": "17:00:00",
+ "9/5/2022": "17:00:00",
+ "11/24/2022": "17:00:00",
+ "1/16/2023": "17:00:00",
+ "2/20/2023": "17:00:00",
+ "5/29/2023": "17:00:00",
+ "6/19/2023": "17:00:00",
+ "7/4/2023": "17:00:00",
+ "9/4/2023": "17:00:00",
+ "11/23/2023": "17:00:00",
+ "12/25/2023": "17:00:00",
+ "1/1/2024": "17:00:00",
+ "1/15/2024": "17:00:00",
+ "2/19/2024": "17:00:00",
+ "5/27/2024": "17:00:00",
+ "6/19/2024": "17:00:00",
+ "7/4/2024": "17:00:00",
+ "9/2/2024": "17:00:00",
+ "11/28/2024": "17:00:00",
+ "12/25/2024": "17:00:00",
+ "1/1/2025": "17:00:00",
+ "1/20/2025": "17:00:00",
+ "2/17/2025": "17:00:00",
+ "5/26/2025": "17:00:00",
+ "6/19/2025": "17:00:00",
+ "9/1/2025": "17:00:00",
+ "11/27/2025": "17:00:00",
+ "12/25/2025": "17:00:00",
+ "1/1/2026": "17:00:00",
+ "1/19/2026": "17:00:00",
+ "2/16/2026": "17:00:00",
+ "5/25/2026": "17:00:00",
+ "9/7/2026": "17:00:00",
+ "11/26/2026": "17:00:00"
+ },
+ "earlyCloses": {
+ "1/16/2009": "15:15:00",
+ "1/19/2009": "12:00:00",
+ "2/13/2009": "15:15:00",
+ "2/16/2009": "12:00:00",
+ "4/9/2009": "15:15:00",
+ "5/22/2009": "15:15:00",
+ "5/25/2009": "12:00:00",
+ "7/3/2009": "12:00:00",
+ "9/4/2009": "15:15:00",
+ "9/7/2009": "12:00:00",
+ "10/9/2009": "15:15:00",
+ "11/26/2009": "12:00:00",
+ "11/27/2009": "12:15:00",
+ "12/24/2009": "12:15:00",
+ "1/15/2010": "15:15:00",
+ "1/18/2010": "12:00:00",
+ "2/12/2010": "15:15:00",
+ "2/15/2010": "12:00:00",
+ "4/2/2010": "10:15:00",
+ "5/28/2010": "15:15:00",
+ "5/31/2010": "12:00:00",
+ "7/2/2010": "15:15:00",
+ "7/5/2010": "12:00:00",
+ "9/3/2010": "15:15:00",
+ "9/6/2010": "12:00:00",
+ "10/8/2010": "15:15:00",
+ "11/25/2010": "12:00:00",
+ "11/26/2010": "12:15:00",
+ "12/31/2010": "12:15:00",
+ "1/14/2011": "15:15:00",
+ "1/17/2011": "12:00:00",
+ "2/18/2011": "15:15:00",
+ "2/21/2011": "12:00:00",
+ "5/27/2011": "15:15:00",
+ "5/30/2011": "10:30:00",
+ "7/1/2011": "15:15:00",
+ "7/4/2011": "12:00:00",
+ "9/2/2011": "15:15:00",
+ "9/5/2011": "12:00:00",
+ "10/7/2011": "15:15:00",
+ "11/24/2011": "12:00:00",
+ "11/25/2011": "12:15:00",
+ "1/13/2012": "15:15:00",
+ "1/16/2012": "12:00:00",
+ "2/17/2012": "15:15:00",
+ "2/20/2012": "12:00:00",
+ "4/6/2012": "10:15:00",
+ "5/25/2012": "15:15:00",
+ "5/28/2012": "12:00:00",
+ "7/4/2012": "12:00:00",
+ "8/31/2012": "15:15:00",
+ "9/3/2012": "12:00:00",
+ "10/5/2012": "15:15:00",
+ "11/22/2012": "12:00:00",
+ "11/23/2012": "12:15:00",
+ "12/24/2012": "12:15:00",
+ "1/18/2013": "15:15:00",
+ "1/21/2013": "12:00:00",
+ "2/15/2013": "15:15:00",
+ "2/18/2013": "12:00:00",
+ "5/24/2013": "15:15:00",
+ "5/27/2013": "12:00:00",
+ "7/4/2013": "12:00:00",
+ "8/30/2013": "15:15:00",
+ "9/2/2013": "12:00:00",
+ "11/28/2013": "12:00:00",
+ "11/29/2013": "12:15:00",
+ "12/24/2013": "12:15:00",
+ "1/17/2014": "15:15:00",
+ "1/20/2014": "12:00:00",
+ "2/14/2014": "15:15:00",
+ "2/17/2014": "12:00:00",
+ "5/23/2014": "15:15:00",
+ "5/26/2014": "12:00:00",
+ "7/4/2014": "12:00:00",
+ "8/29/2014": "15:15:00",
+ "9/1/2014": "12:00:00",
+ "11/27/2014": "12:00:00",
+ "11/28/2014": "12:15:00",
+ "12/24/2014": "12:15:00",
+ "1/16/2015": "15:15:00",
+ "1/19/2015": "12:00:00",
+ "2/13/2015": "15:15:00",
+ "2/16/2015": "12:00:00",
+ "4/3/2015": "10:15:00",
+ "5/22/2015": "15:15:00",
+ "5/25/2015": "12:00:00",
+ "7/3/2015": "12:00:00",
+ "9/7/2015": "12:00:00",
+ "11/26/2015": "12:00:00",
+ "11/27/2015": "12:15:00",
+ "12/24/2015": "12:15:00",
+ "1/18/2016": "12:00:00",
+ "2/15/2016": "12:00:00",
+ "5/30/2016": "12:00:00",
+ "7/4/2016": "12:00:00",
+ "9/5/2016": "12:00:00",
+ "11/24/2016": "12:00:00",
+ "11/25/2016": "12:15:00",
+ "1/16/2017": "12:00:00",
+ "2/20/2017": "12:00:00",
+ "5/29/2017": "12:00:00",
+ "7/4/2017": "12:00:00",
+ "9/4/2017": "12:00:00",
+ "11/23/2017": "12:00:00",
+ "11/24/2017": "12:15:00",
+ "1/15/2018": "12:00:00",
+ "2/19/2018": "12:00:00",
+ "5/28/2018": "12:00:00",
+ "7/4/2018": "12:00:00",
+ "9/3/2018": "12:00:00",
+ "11/22/2018": "12:00:00",
+ "11/23/2018": "12:15:00",
+ "12/24/2018": "12:15:00",
+ "1/21/2019": "12:00:00",
+ "2/18/2019": "12:00:00",
+ "5/27/2019": "12:00:00",
+ "7/4/2019": "12:00:00",
+ "9/2/2019": "12:00:00",
+ "11/28/2019": "12:00:00",
+ "11/29/2019": "12:15:00",
+ "12/24/2019": "12:15:00",
+ "1/20/2020": "12:00:00",
+ "2/17/2020": "12:00:00",
+ "5/25/2020": "12:00:00",
+ "7/3/2020": "12:00:00",
+ "9/7/2020": "12:00:00",
+ "11/26/2020": "12:00:00",
+ "11/27/2020": "12:15:00",
+ "12/24/2020": "12:15:00",
+ "1/18/2021": "12:00:00",
+ "2/15/2021": "12:00:00",
+ "4/2/2021": "10:15:00",
+ "5/31/2021": "12:00:00",
+ "7/5/2021": "12:00:00",
+ "9/6/2021": "12:00:00",
+ "11/25/2021": "12:00:00",
+ "11/26/2021": "12:15:00",
+ "1/17/2022": "12:00:00",
+ "2/21/2022": "12:00:00",
+ "5/30/2022": "12:00:00",
+ "6/20/2022": "12:00:00",
+ "7/4/2022": "12:00:00",
+ "9/5/2022": "12:00:00",
+ "11/24/2022": "12:00:00",
+ "11/25/2022": "12:15:00",
+ "1/16/2023": "12:00:00",
+ "2/20/2023": "12:00:00",
+ "4/7/2023": "10:15:00",
+ "5/29/2023": "12:00:00",
+ "6/19/2023": "12:00:00",
+ "7/4/2023": "12:00:00",
+ "9/4/2023": "12:00:00",
+ "11/23/2023": "12:00:00",
+ "11/24/2023": "12:15:00",
+ "1/15/2024": "12:00:00",
+ "2/19/2024": "12:00:00",
+ "3/28/2024": "16:00:00",
+ "5/27/2024": "12:00:00",
+ "6/19/2024": "12:00:00",
+ "7/4/2024": "12:00:00",
+ "9/2/2024": "12:00:00",
+ "11/28/2024": "12:00:00",
+ "12/24/2024": "12:15:00",
+ "12/31/2024": "16:00:00",
+ "1/20/2025": "12:00:00",
+ "2/17/2025": "12:00:00",
+ "4/17/2025": "16:00:00",
+ "5/26/2025": "12:00:00",
+ "6/19/2025": "12:00:00",
+ "7/4/2025": "12:00:00",
+ "9/1/2025": "12:00:00",
+ "11/27/2025": "12:00:00",
+ "11/28/2025": "12:15:00",
+ "12/24/2025": "12:15:00",
+ "12/25/2025": "16:00:00",
+ "12/31/2025": "16:00:00",
+ "1/19/2026": "12:00:00",
+ "2/16/2026": "12:00:00",
+ "4/3/2026": "10:15:00",
+ "5/25/2026": "12:00:00",
+ "6/19/2026": "12:00:00",
+ "6/18/2027": "12:00:00",
+ "7/3/2026": "12:00:00",
+ "9/7/2026": "12:00:00",
+ "11/26/2026": "12:00:00",
+ "11/27/2026": "12:15:00",
+ "12/24/2026": "12:15:00",
+ "12/31/2026": "16:00:00"
+ },
+ "bankHolidays": [
+ "1/19/2009",
+ "2/16/2009",
+ "5/25/2009",
+ "7/3/2009",
+ "9/7/2009",
+ "10/12/2009",
+ "11/11/2009",
+ "11/26/2009",
+ "1/18/2010",
+ "2/15/2010",
+ "5/31/2010",
+ "7/5/2010",
+ "9/6/2010",
+ "10/11/2010",
+ "11/11/2010",
+ "11/25/2010",
+ "12/31/2010",
+ "1/17/2011",
+ "2/21/2011",
+ "5/30/2011",
+ "7/4/2011",
+ "9/5/2011",
+ "10/10/2011",
+ "11/11/2011",
+ "11/24/2011",
+ "1/16/2012",
+ "2/20/2012",
+ "5/28/2012",
+ "7/4/2012",
+ "9/3/2012",
+ "10/8/2012",
+ "11/12/2012",
+ "11/22/2012",
+ "1/21/2013",
+ "2/18/2013",
+ "5/27/2013",
+ "7/4/2013",
+ "9/2/2013",
+ "10/14/2013",
+ "11/11/2013",
+ "11/28/2013",
+ "1/20/2014",
+ "2/17/2014",
+ "5/26/2014",
+ "7/4/2014",
+ "9/1/2014",
+ "10/13/2014",
+ "11/11/2014",
+ "11/27/2014",
+ "12/25/2014",
+ "1/1/2015",
+ "1/19/2015",
+ "2/16/2015",
+ "5/25/2015",
+ "7/3/2015",
+ "9/7/2015",
+ "10/12/2015",
+ "11/11/2015",
+ "11/26/2015",
+ "1/18/2016",
+ "2/15/2016",
+ "5/30/2016",
+ "7/4/2016",
+ "9/5/2016",
+ "10/10/2016",
+ "11/11/2016",
+ "11/24/2016",
+ "12/26/2016",
+ "1/2/2017",
+ "1/16/2017",
+ "2/20/2017",
+ "5/29/2017",
+ "7/4/2017",
+ "9/4/2017",
+ "10/9/2017",
+ "11/10/2017",
+ "11/23/2017",
+ "12/25/2017",
+ "1/1/2018",
+ "1/15/2018",
+ "2/19/2018",
+ "5/28/2018",
+ "7/4/2018",
+ "9/3/2018",
+ "10/8/2018",
+ "11/12/2018",
+ "11/22/2018",
+ "12/25/2018",
+ "1/1/2019",
+ "1/21/2019",
+ "2/18/2019",
+ "5/27/2019",
+ "7/4/2019",
+ "9/2/2019",
+ "10/14/2019",
+ "11/11/2019",
+ "11/28/2019",
+ "12/25/2019",
+ "1/1/2020",
+ "1/20/2020",
+ "2/17/2020",
+ "5/25/2020",
+ "7/3/2020",
+ "9/7/2020",
+ "10/12/2020",
+ "11/11/2020",
+ "11/26/2020",
+ "1/18/2021",
+ "2/15/2021",
+ "5/31/2021",
+ "7/5/2021",
+ "9/6/2021",
+ "10/11/2021",
+ "11/11/2021",
+ "11/25/2021",
+ "12/31/2021",
+ "1/17/2022",
+ "2/21/2022",
+ "5/30/2022",
+ "6/20/2022",
+ "7/4/2022",
+ "9/5/2022",
+ "10/10/2022",
+ "11/11/2022",
+ "11/24/2022",
+ "12/26/2022",
+ "1/2/2023",
+ "1/16/2023",
+ "2/20/2023",
+ "5/29/2023",
+ "6/19/2023",
+ "7/4/2023",
+ "9/4/2023",
+ "10/9/2023",
+ "11/11/2023",
+ "11/23/2023",
+ "12/25/2023",
+ "1/1/2024",
+ "1/15/2024",
+ "2/19/2024",
+ "5/27/2024",
+ "6/19/2024",
+ "7/4/2024",
+ "9/2/2024",
+ "10/14/2024",
+ "11/11/2024",
+ "11/28/2024",
+ "12/25/2024",
+ "1/1/2025",
+ "1/20/2025",
+ "2/17/2025",
+ "5/26/2025",
+ "6/19/2025",
+ "7/4/2025",
+ "9/1/2025",
+ "10/13/2025",
+ "11/11/2025",
+ "11/27/2025",
+ "12/25/2025",
+ "1/1/2026",
+ "1/19/2026",
+ "2/16/2026",
+ "5/25/2026",
+ "6/19/2026",
+ "6/18/2027",
+ "7/3/2026",
+ "9/7/2026",
+ "11/26/2026"
+ ]
+ },
+ "Future-cbot-MWN": {
+ "dataTimeZone": "UTC",
+ "exchangeTimeZone": "America/Chicago",
+ "sunday": [
+ {
+ "start": "17:00:00",
+ "end": "1.00:00:00",
+ "state": "premarket"
+ }
+ ],
+ "monday": [
+ {
+ "start": "00:00:00",
+ "end": "08:30:00",
+ "state": "premarket"
+ },
+ {
+ "start": "08:30:00",
+ "end": "16:00:00",
+ "state": "market"
+ },
+ {
+ "start": "17:00:00",
+ "end": "1.00:00:00",
+ "state": "postmarket"
+ }
+ ],
+ "tuesday": [
+ {
+ "start": "00:00:00",
+ "end": "08:30:00",
+ "state": "premarket"
+ },
+ {
+ "start": "08:30:00",
+ "end": "16:00:00",
+ "state": "market"
+ },
+ {
+ "start": "17:00:00",
+ "end": "1.00:00:00",
+ "state": "postmarket"
+ }
+ ],
+ "wednesday": [
+ {
+ "start": "00:00:00",
+ "end": "08:30:00",
+ "state": "premarket"
+ },
+ {
+ "start": "08:30:00",
+ "end": "16:00:00",
+ "state": "market"
+ },
+ {
+ "start": "17:00:00",
+ "end": "1.00:00:00",
+ "state": "postmarket"
+ }
+ ],
+ "thursday": [
+ {
+ "start": "00:00:00",
+ "end": "08:30:00",
+ "state": "premarket"
+ },
+ {
+ "start": "08:30:00",
+ "end": "16:00:00",
+ "state": "market"
+ },
+ {
+ "start": "17:00:00",
+ "end": "1.00:00:00",
+ "state": "postmarket"
+ }
+ ],
+ "friday": [
+ {
+ "start": "00:00:00",
+ "end": "08:30:00",
+ "state": "premarket"
+ },
+ {
+ "start": "08:30:00",
+ "end": "16:00:00",
+ "state": "market"
+ }
+ ],
+ "saturday": [],
+ "holidays": [
+ "12/25/2026",
+ "1/1/2027"
+ ],
+ "lateOpens": {
+ "1/19/2009": "17:00:00",
+ "2/16/2009": "17:00:00",
+ "5/25/2009": "17:00:00",
+ "9/7/2009": "17:00:00",
+ "11/26/2009": "17:00:00",
+ "1/18/2010": "17:00:00",
+ "2/15/2010": "17:00:00",
+ "5/31/2010": "17:00:00",
+ "7/5/2010": "17:00:00",
+ "9/6/2010": "17:00:00",
+ "11/25/2010": "17:00:00",
+ "1/17/2011": "17:00:00",
+ "2/21/2011": "17:00:00",
+ "5/30/2011": "17:00:00",
+ "7/4/2011": "17:00:00",
+ "9/5/2011": "17:00:00",
+ "11/24/2011": "17:00:00",
+ "1/16/2012": "17:00:00",
+ "2/20/2012": "17:00:00",
+ "5/28/2012": "17:00:00",
+ "7/4/2012": "17:00:00",
+ "9/3/2012": "17:00:00",
+ "11/22/2012": "17:00:00",
+ "1/21/2013": "17:00:00",
+ "2/18/2013": "17:00:00",
+ "5/27/2013": "17:00:00",
+ "7/4/2013": "17:00:00",
+ "9/2/2013": "17:00:00",
+ "11/28/2013": "17:00:00",
+ "1/20/2014": "17:00:00",
+ "2/17/2014": "17:00:00",
+ "5/26/2014": "17:00:00",
+ "9/1/2014": "17:00:00",
+ "11/27/2014": "17:00:00",
+ "1/19/2015": "17:00:00",
+ "2/16/2015": "17:00:00",
+ "5/25/2015": "17:00:00",
+ "9/7/2015": "17:00:00",
+ "11/26/2015": "17:00:00",
+ "1/18/2016": "17:00:00",
+ "2/15/2016": "17:00:00",
+ "5/30/2016": "17:00:00",
+ "7/4/2016": "17:00:00",
+ "9/5/2016": "17:00:00",
+ "11/24/2016": "17:00:00",
+ "1/16/2017": "17:00:00",
+ "2/20/2017": "17:00:00",
+ "5/29/2017": "17:00:00",
+ "7/4/2017": "17:00:00",
+ "9/4/2017": "17:00:00",
+ "11/23/2017": "17:00:00",
+ "1/15/2018": "17:00:00",
+ "2/19/2018": "17:00:00",
+ "5/28/2018": "17:00:00",
+ "7/4/2018": "17:00:00",
+ "9/3/2018": "17:00:00",
+ "11/22/2018": "17:00:00",
+ "1/21/2019": "17:00:00",
+ "2/18/2019": "17:00:00",
+ "5/27/2019": "17:00:00",
+ "7/4/2019": "17:00:00",
+ "9/2/2019": "17:00:00",
+ "11/28/2019": "17:00:00",
+ "1/20/2020": "17:00:00",
+ "2/17/2020": "17:00:00",
+ "5/25/2020": "17:00:00",
+ "7/3/2020": "17:00:00",
+ "9/7/2020": "17:00:00",
+ "11/26/2020": "17:00:00",
+ "1/18/2021": "17:00:00",
+ "2/15/2021": "17:00:00",
+ "5/31/2021": "17:00:00",
+ "7/5/2021": "17:00:00",
+ "9/6/2021": "17:00:00",
+ "11/25/2021": "17:00:00",
+ "1/17/2022": "17:00:00",
+ "2/21/2022": "17:00:00",
+ "5/30/2022": "17:00:00",
+ "6/20/2022": "17:00:00",
+ "7/4/2022": "17:00:00",
+ "9/5/2022": "17:00:00",
+ "11/24/2022": "17:00:00",
+ "1/16/2023": "17:00:00",
+ "2/20/2023": "17:00:00",
+ "5/29/2023": "17:00:00",
+ "6/19/2023": "17:00:00",
+ "7/4/2023": "17:00:00",
+ "9/4/2023": "17:00:00",
+ "11/23/2023": "17:00:00",
+ "12/25/2023": "17:00:00",
+ "1/1/2024": "17:00:00",
+ "1/15/2024": "17:00:00",
+ "2/19/2024": "17:00:00",
+ "5/27/2024": "17:00:00",
+ "6/19/2024": "17:00:00",
+ "7/4/2024": "17:00:00",
+ "9/2/2024": "17:00:00",
+ "11/28/2024": "17:00:00",
+ "12/25/2024": "17:00:00",
+ "1/1/2025": "17:00:00",
+ "1/20/2025": "17:00:00",
+ "2/17/2025": "17:00:00",
+ "5/26/2025": "17:00:00",
+ "6/19/2025": "17:00:00",
+ "9/1/2025": "17:00:00",
+ "11/27/2025": "17:00:00",
+ "12/25/2025": "17:00:00",
+ "1/1/2026": "17:00:00",
+ "1/19/2026": "17:00:00",
+ "2/16/2026": "17:00:00",
+ "5/25/2026": "17:00:00",
+ "9/7/2026": "17:00:00",
+ "11/26/2026": "17:00:00"
+ },
+ "earlyCloses": {
+ "1/16/2009": "15:15:00",
+ "1/19/2009": "12:00:00",
+ "2/13/2009": "15:15:00",
+ "2/16/2009": "12:00:00",
+ "4/9/2009": "15:15:00",
+ "5/22/2009": "15:15:00",
+ "5/25/2009": "12:00:00",
+ "7/3/2009": "12:00:00",
+ "9/4/2009": "15:15:00",
+ "9/7/2009": "12:00:00",
+ "10/9/2009": "15:15:00",
+ "11/26/2009": "12:00:00",
+ "11/27/2009": "12:15:00",
+ "12/24/2009": "12:15:00",
+ "1/15/2010": "15:15:00",
+ "1/18/2010": "12:00:00",
+ "2/12/2010": "15:15:00",
+ "2/15/2010": "12:00:00",
+ "4/2/2010": "10:15:00",
+ "5/28/2010": "15:15:00",
+ "5/31/2010": "12:00:00",
+ "7/2/2010": "15:15:00",
+ "7/5/2010": "12:00:00",
+ "9/3/2010": "15:15:00",
+ "9/6/2010": "12:00:00",
+ "10/8/2010": "15:15:00",
+ "11/25/2010": "12:00:00",
+ "11/26/2010": "12:15:00",
+ "12/31/2010": "12:15:00",
+ "1/14/2011": "15:15:00",
+ "1/17/2011": "12:00:00",
+ "2/18/2011": "15:15:00",
+ "2/21/2011": "12:00:00",
+ "5/27/2011": "15:15:00",
+ "5/30/2011": "10:30:00",
+ "7/1/2011": "15:15:00",
+ "7/4/2011": "12:00:00",
+ "9/2/2011": "15:15:00",
+ "9/5/2011": "12:00:00",
+ "10/7/2011": "15:15:00",
+ "11/24/2011": "12:00:00",
+ "11/25/2011": "12:15:00",
+ "1/13/2012": "15:15:00",
+ "1/16/2012": "12:00:00",
+ "2/17/2012": "15:15:00",
+ "2/20/2012": "12:00:00",
+ "4/6/2012": "10:15:00",
+ "5/25/2012": "15:15:00",
+ "5/28/2012": "12:00:00",
+ "7/4/2012": "12:00:00",
+ "8/31/2012": "15:15:00",
+ "9/3/2012": "12:00:00",
+ "10/5/2012": "15:15:00",
+ "11/22/2012": "12:00:00",
+ "11/23/2012": "12:15:00",
+ "12/24/2012": "12:15:00",
+ "1/18/2013": "15:15:00",
+ "1/21/2013": "12:00:00",
+ "2/15/2013": "15:15:00",
+ "2/18/2013": "12:00:00",
+ "5/24/2013": "15:15:00",
+ "5/27/2013": "12:00:00",
+ "7/4/2013": "12:00:00",
+ "8/30/2013": "15:15:00",
+ "9/2/2013": "12:00:00",
+ "11/28/2013": "12:00:00",
+ "11/29/2013": "12:15:00",
+ "12/24/2013": "12:15:00",
+ "1/17/2014": "15:15:00",
+ "1/20/2014": "12:00:00",
+ "2/14/2014": "15:15:00",
+ "2/17/2014": "12:00:00",
+ "5/23/2014": "15:15:00",
+ "5/26/2014": "12:00:00",
+ "7/4/2014": "12:00:00",
+ "8/29/2014": "15:15:00",
+ "9/1/2014": "12:00:00",
+ "11/27/2014": "12:00:00",
+ "11/28/2014": "12:15:00",
+ "12/24/2014": "12:15:00",
+ "1/16/2015": "15:15:00",
+ "1/19/2015": "12:00:00",
+ "2/13/2015": "15:15:00",
+ "2/16/2015": "12:00:00",
+ "4/3/2015": "10:15:00",
+ "5/22/2015": "15:15:00",
+ "5/25/2015": "12:00:00",
+ "7/3/2015": "12:00:00",
+ "9/7/2015": "12:00:00",
+ "11/26/2015": "12:00:00",
+ "11/27/2015": "12:15:00",
+ "12/24/2015": "12:15:00",
+ "1/18/2016": "12:00:00",
+ "2/15/2016": "12:00:00",
+ "5/30/2016": "12:00:00",
+ "7/4/2016": "12:00:00",
+ "9/5/2016": "12:00:00",
+ "11/24/2016": "12:00:00",
+ "11/25/2016": "12:15:00",
+ "1/16/2017": "12:00:00",
+ "2/20/2017": "12:00:00",
+ "5/29/2017": "12:00:00",
+ "7/4/2017": "12:00:00",
+ "9/4/2017": "12:00:00",
+ "11/23/2017": "12:00:00",
+ "11/24/2017": "12:15:00",
+ "1/15/2018": "12:00:00",
+ "2/19/2018": "12:00:00",
+ "5/28/2018": "12:00:00",
+ "7/4/2018": "12:00:00",
+ "9/3/2018": "12:00:00",
+ "11/22/2018": "12:00:00",
+ "11/23/2018": "12:15:00",
+ "12/24/2018": "12:15:00",
+ "1/21/2019": "12:00:00",
+ "2/18/2019": "12:00:00",
+ "5/27/2019": "12:00:00",
+ "7/4/2019": "12:00:00",
+ "9/2/2019": "12:00:00",
+ "11/28/2019": "12:00:00",
+ "11/29/2019": "12:15:00",
+ "12/24/2019": "12:15:00",
+ "1/20/2020": "12:00:00",
+ "2/17/2020": "12:00:00",
+ "5/25/2020": "12:00:00",
+ "7/3/2020": "12:00:00",
+ "9/7/2020": "12:00:00",
+ "11/26/2020": "12:00:00",
+ "11/27/2020": "12:15:00",
+ "12/24/2020": "12:15:00",
+ "1/18/2021": "12:00:00",
+ "2/15/2021": "12:00:00",
+ "4/2/2021": "10:15:00",
+ "5/31/2021": "12:00:00",
+ "7/5/2021": "12:00:00",
+ "9/6/2021": "12:00:00",
+ "11/25/2021": "12:00:00",
+ "11/26/2021": "12:15:00",
+ "1/17/2022": "12:00:00",
+ "2/21/2022": "12:00:00",
+ "5/30/2022": "12:00:00",
+ "6/20/2022": "12:00:00",
+ "7/4/2022": "12:00:00",
+ "9/5/2022": "12:00:00",
+ "11/24/2022": "12:00:00",
+ "11/25/2022": "12:15:00",
+ "1/16/2023": "12:00:00",
+ "2/20/2023": "12:00:00",
+ "4/7/2023": "10:15:00",
+ "5/29/2023": "12:00:00",
+ "6/19/2023": "12:00:00",
+ "7/4/2023": "12:00:00",
+ "9/4/2023": "12:00:00",
+ "11/23/2023": "12:00:00",
+ "11/24/2023": "12:15:00",
+ "1/15/2024": "12:00:00",
+ "2/19/2024": "12:00:00",
+ "3/28/2024": "16:00:00",
+ "5/27/2024": "12:00:00",
+ "6/19/2024": "12:00:00",
+ "7/4/2024": "12:00:00",
+ "9/2/2024": "12:00:00",
+ "11/28/2024": "12:00:00",
+ "12/24/2024": "12:15:00",
+ "12/31/2024": "16:00:00",
+ "1/20/2025": "12:00:00",
+ "2/17/2025": "12:00:00",
+ "4/17/2025": "16:00:00",
+ "5/26/2025": "12:00:00",
+ "6/19/2025": "12:00:00",
+ "7/4/2025": "12:00:00",
+ "9/1/2025": "12:00:00",
+ "11/27/2025": "12:00:00",
+ "11/28/2025": "12:15:00",
+ "12/24/2025": "12:15:00",
+ "12/25/2025": "16:00:00",
+ "12/31/2025": "16:00:00",
+ "1/19/2026": "12:00:00",
+ "2/16/2026": "12:00:00",
+ "4/3/2026": "10:15:00",
+ "5/25/2026": "12:00:00",
+ "6/19/2026": "12:00:00",
+ "6/18/2027": "12:00:00",
+ "7/3/2026": "12:00:00",
+ "9/7/2026": "12:00:00",
+ "11/26/2026": "12:00:00",
+ "11/27/2026": "12:15:00",
+ "12/24/2026": "12:15:00",
+ "12/31/2026": "16:00:00"
+ },
+ "bankHolidays": [
+ "1/19/2009",
+ "2/16/2009",
+ "5/25/2009",
+ "7/3/2009",
+ "9/7/2009",
+ "10/12/2009",
+ "11/11/2009",
+ "11/26/2009",
+ "1/18/2010",
+ "2/15/2010",
+ "5/31/2010",
+ "7/5/2010",
+ "9/6/2010",
+ "10/11/2010",
+ "11/11/2010",
+ "11/25/2010",
+ "12/31/2010",
+ "1/17/2011",
+ "2/21/2011",
+ "5/30/2011",
+ "7/4/2011",
+ "9/5/2011",
+ "10/10/2011",
+ "11/11/2011",
+ "11/24/2011",
+ "1/16/2012",
+ "2/20/2012",
+ "5/28/2012",
+ "7/4/2012",
+ "9/3/2012",
+ "10/8/2012",
+ "11/12/2012",
+ "11/22/2012",
+ "1/21/2013",
+ "2/18/2013",
+ "5/27/2013",
+ "7/4/2013",
+ "9/2/2013",
+ "10/14/2013",
+ "11/11/2013",
+ "11/28/2013",
+ "1/20/2014",
+ "2/17/2014",
+ "5/26/2014",
+ "7/4/2014",
+ "9/1/2014",
+ "10/13/2014",
+ "11/11/2014",
+ "11/27/2014",
+ "12/25/2014",
+ "1/1/2015",
+ "1/19/2015",
+ "2/16/2015",
+ "5/25/2015",
+ "7/3/2015",
+ "9/7/2015",
+ "10/12/2015",
+ "11/11/2015",
+ "11/26/2015",
+ "1/18/2016",
+ "2/15/2016",
+ "5/30/2016",
+ "7/4/2016",
+ "9/5/2016",
+ "10/10/2016",
+ "11/11/2016",
+ "11/24/2016",
+ "12/26/2016",
+ "1/2/2017",
+ "1/16/2017",
+ "2/20/2017",
+ "5/29/2017",
+ "7/4/2017",
+ "9/4/2017",
+ "10/9/2017",
+ "11/10/2017",
+ "11/23/2017",
+ "12/25/2017",
+ "1/1/2018",
+ "1/15/2018",
+ "2/19/2018",
+ "5/28/2018",
+ "7/4/2018",
+ "9/3/2018",
+ "10/8/2018",
+ "11/12/2018",
+ "11/22/2018",
+ "12/25/2018",
+ "1/1/2019",
+ "1/21/2019",
+ "2/18/2019",
+ "5/27/2019",
+ "7/4/2019",
+ "9/2/2019",
+ "10/14/2019",
+ "11/11/2019",
+ "11/28/2019",
+ "12/25/2019",
+ "1/1/2020",
+ "1/20/2020",
+ "2/17/2020",
+ "5/25/2020",
+ "7/3/2020",
+ "9/7/2020",
+ "10/12/2020",
+ "11/11/2020",
+ "11/26/2020",
+ "1/18/2021",
+ "2/15/2021",
+ "5/31/2021",
+ "7/5/2021",
+ "9/6/2021",
+ "10/11/2021",
+ "11/11/2021",
+ "11/25/2021",
+ "12/31/2021",
+ "1/17/2022",
+ "2/21/2022",
+ "5/30/2022",
+ "6/20/2022",
+ "7/4/2022",
+ "9/5/2022",
+ "10/10/2022",
+ "11/11/2022",
+ "11/24/2022",
+ "12/26/2022",
+ "1/2/2023",
+ "1/16/2023",
+ "2/20/2023",
+ "5/29/2023",
+ "6/19/2023",
+ "7/4/2023",
+ "9/4/2023",
+ "10/9/2023",
+ "11/11/2023",
+ "11/23/2023",
+ "12/25/2023",
+ "1/1/2024",
+ "1/15/2024",
+ "2/19/2024",
+ "5/27/2024",
+ "6/19/2024",
+ "7/4/2024",
+ "9/2/2024",
+ "10/14/2024",
+ "11/11/2024",
+ "11/28/2024",
+ "12/25/2024",
+ "1/1/2025",
+ "1/20/2025",
+ "2/17/2025",
+ "5/26/2025",
+ "6/19/2025",
+ "7/4/2025",
+ "9/1/2025",
+ "10/13/2025",
+ "11/11/2025",
+ "11/27/2025",
+ "12/25/2025",
+ "1/1/2026",
+ "1/19/2026",
+ "2/16/2026",
+ "5/25/2026",
+ "6/19/2026",
+ "6/18/2027",
+ "7/3/2026",
+ "9/7/2026",
+ "11/26/2026"
+ ]
+ },
"Future-nymex-FO": {
"dataTimeZone": "UTC",
"exchangeTimeZone": "America/New_York",
@@ -106022,118 +107166,661 @@
"12/31/2026": "16:00:00"
},
"lateOpens": {
- "1/19/2009": "17:00:00",
- "2/16/2009": "17:00:00",
- "5/25/2009": "17:00:00",
- "9/7/2009": "17:00:00",
- "11/26/2009": "17:00:00",
- "1/18/2010": "17:00:00",
- "2/15/2010": "17:00:00",
- "5/31/2010": "17:00:00",
- "7/5/2010": "17:00:00",
- "9/6/2010": "17:00:00",
- "11/25/2010": "17:00:00",
- "1/17/2011": "17:00:00",
- "2/21/2011": "17:00:00",
- "5/30/2011": "17:00:00",
- "7/4/2011": "17:00:00",
- "9/5/2011": "17:00:00",
- "11/24/2011": "17:00:00",
- "1/16/2012": "17:00:00",
- "2/20/2012": "17:00:00",
- "5/28/2012": "17:00:00",
- "7/4/2012": "17:00:00",
- "9/3/2012": "17:00:00",
- "11/22/2012": "17:00:00",
- "1/21/2013": "17:00:00",
- "2/18/2013": "17:00:00",
- "5/27/2013": "17:00:00",
- "7/4/2013": "17:00:00",
- "9/2/2013": "17:00:00",
- "11/28/2013": "17:00:00",
- "1/20/2014": "17:00:00",
- "2/17/2014": "17:00:00",
- "5/26/2014": "17:00:00",
- "9/1/2014": "17:00:00",
- "11/27/2014": "17:00:00",
- "1/19/2015": "17:00:00",
- "2/16/2015": "17:00:00",
- "5/25/2015": "17:00:00",
- "9/7/2015": "17:00:00",
- "11/26/2015": "17:00:00",
- "1/18/2016": "17:00:00",
- "2/15/2016": "17:00:00",
- "5/30/2016": "17:00:00",
- "7/4/2016": "17:00:00",
- "9/5/2016": "17:00:00",
- "11/24/2016": "17:00:00",
- "1/16/2017": "17:00:00",
- "2/20/2017": "17:00:00",
- "5/29/2017": "17:00:00",
- "7/4/2017": "17:00:00",
- "9/4/2017": "17:00:00",
- "11/23/2017": "17:00:00",
- "1/15/2018": "17:00:00",
- "2/19/2018": "17:00:00",
- "5/28/2018": "17:00:00",
- "7/4/2018": "17:00:00",
- "9/3/2018": "17:00:00",
- "11/22/2018": "17:00:00",
- "1/21/2019": "17:00:00",
- "2/18/2019": "17:00:00",
- "5/27/2019": "17:00:00",
- "7/4/2019": "17:00:00",
- "9/2/2019": "17:00:00",
- "11/28/2019": "17:00:00",
- "1/20/2020": "17:00:00",
- "2/17/2020": "17:00:00",
- "5/25/2020": "17:00:00",
- "9/7/2020": "17:00:00",
- "11/26/2020": "17:00:00",
- "1/18/2021": "17:00:00",
- "2/15/2021": "17:00:00",
- "5/31/2021": "17:00:00",
- "7/5/2021": "17:00:00",
- "9/6/2021": "17:00:00",
- "11/25/2021": "17:00:00",
- "1/17/2022": "17:00:00",
- "2/21/2022": "17:00:00",
- "5/30/2022": "17:00:00",
- "6/20/2022": "17:00:00",
- "7/4/2022": "17:00:00",
- "9/5/2022": "17:00:00",
- "11/24/2022": "17:00:00",
- "1/16/2023": "17:00:00",
- "2/20/2023": "17:00:00",
- "5/29/2023": "17:00:00",
- "6/19/2023": "17:00:00",
- "7/4/2023": "17:00:00",
- "9/4/2023": "17:00:00",
- "11/23/2023": "17:00:00",
- "12/25/2023": "17:00:00",
- "1/1/2024": "17:00:00",
- "1/15/2024": "17:00:00",
- "2/19/2024": "17:00:00",
- "5/27/2024": "17:00:00",
- "6/19/2024": "17:00:00",
- "7/4/2024": "17:00:00",
- "9/2/2024": "17:00:00",
- "11/28/2024": "17:00:00",
- "12/25/2024": "17:00:00",
- "1/1/2025": "17:00:00",
- "1/20/2025": "17:00:00",
- "2/17/2025": "17:00:00",
- "5/26/2025": "17:00:00",
- "6/19/2025": "17:00:00",
- "9/1/2025": "17:00:00",
- "11/27/2025": "17:00:00",
- "12/25/2025": "17:00:00",
- "1/1/2026": "17:00:00",
- "1/19/2026": "17:00:00",
- "2/16/2026": "17:00:00",
- "5/25/2026": "17:00:00",
- "9/7/2026": "17:00:00",
- "11/26/2026": "17:00:00"
+ "1/19/2009": "17:00:00",
+ "2/16/2009": "17:00:00",
+ "5/25/2009": "17:00:00",
+ "9/7/2009": "17:00:00",
+ "11/26/2009": "17:00:00",
+ "1/18/2010": "17:00:00",
+ "2/15/2010": "17:00:00",
+ "5/31/2010": "17:00:00",
+ "7/5/2010": "17:00:00",
+ "9/6/2010": "17:00:00",
+ "11/25/2010": "17:00:00",
+ "1/17/2011": "17:00:00",
+ "2/21/2011": "17:00:00",
+ "5/30/2011": "17:00:00",
+ "7/4/2011": "17:00:00",
+ "9/5/2011": "17:00:00",
+ "11/24/2011": "17:00:00",
+ "1/16/2012": "17:00:00",
+ "2/20/2012": "17:00:00",
+ "5/28/2012": "17:00:00",
+ "7/4/2012": "17:00:00",
+ "9/3/2012": "17:00:00",
+ "11/22/2012": "17:00:00",
+ "1/21/2013": "17:00:00",
+ "2/18/2013": "17:00:00",
+ "5/27/2013": "17:00:00",
+ "7/4/2013": "17:00:00",
+ "9/2/2013": "17:00:00",
+ "11/28/2013": "17:00:00",
+ "1/20/2014": "17:00:00",
+ "2/17/2014": "17:00:00",
+ "5/26/2014": "17:00:00",
+ "9/1/2014": "17:00:00",
+ "11/27/2014": "17:00:00",
+ "1/19/2015": "17:00:00",
+ "2/16/2015": "17:00:00",
+ "5/25/2015": "17:00:00",
+ "9/7/2015": "17:00:00",
+ "11/26/2015": "17:00:00",
+ "1/18/2016": "17:00:00",
+ "2/15/2016": "17:00:00",
+ "5/30/2016": "17:00:00",
+ "7/4/2016": "17:00:00",
+ "9/5/2016": "17:00:00",
+ "11/24/2016": "17:00:00",
+ "1/16/2017": "17:00:00",
+ "2/20/2017": "17:00:00",
+ "5/29/2017": "17:00:00",
+ "7/4/2017": "17:00:00",
+ "9/4/2017": "17:00:00",
+ "11/23/2017": "17:00:00",
+ "1/15/2018": "17:00:00",
+ "2/19/2018": "17:00:00",
+ "5/28/2018": "17:00:00",
+ "7/4/2018": "17:00:00",
+ "9/3/2018": "17:00:00",
+ "11/22/2018": "17:00:00",
+ "1/21/2019": "17:00:00",
+ "2/18/2019": "17:00:00",
+ "5/27/2019": "17:00:00",
+ "7/4/2019": "17:00:00",
+ "9/2/2019": "17:00:00",
+ "11/28/2019": "17:00:00",
+ "1/20/2020": "17:00:00",
+ "2/17/2020": "17:00:00",
+ "5/25/2020": "17:00:00",
+ "9/7/2020": "17:00:00",
+ "11/26/2020": "17:00:00",
+ "1/18/2021": "17:00:00",
+ "2/15/2021": "17:00:00",
+ "5/31/2021": "17:00:00",
+ "7/5/2021": "17:00:00",
+ "9/6/2021": "17:00:00",
+ "11/25/2021": "17:00:00",
+ "1/17/2022": "17:00:00",
+ "2/21/2022": "17:00:00",
+ "5/30/2022": "17:00:00",
+ "6/20/2022": "17:00:00",
+ "7/4/2022": "17:00:00",
+ "9/5/2022": "17:00:00",
+ "11/24/2022": "17:00:00",
+ "1/16/2023": "17:00:00",
+ "2/20/2023": "17:00:00",
+ "5/29/2023": "17:00:00",
+ "6/19/2023": "17:00:00",
+ "7/4/2023": "17:00:00",
+ "9/4/2023": "17:00:00",
+ "11/23/2023": "17:00:00",
+ "12/25/2023": "17:00:00",
+ "1/1/2024": "17:00:00",
+ "1/15/2024": "17:00:00",
+ "2/19/2024": "17:00:00",
+ "5/27/2024": "17:00:00",
+ "6/19/2024": "17:00:00",
+ "7/4/2024": "17:00:00",
+ "9/2/2024": "17:00:00",
+ "11/28/2024": "17:00:00",
+ "12/25/2024": "17:00:00",
+ "1/1/2025": "17:00:00",
+ "1/20/2025": "17:00:00",
+ "2/17/2025": "17:00:00",
+ "5/26/2025": "17:00:00",
+ "6/19/2025": "17:00:00",
+ "9/1/2025": "17:00:00",
+ "11/27/2025": "17:00:00",
+ "12/25/2025": "17:00:00",
+ "1/1/2026": "17:00:00",
+ "1/19/2026": "17:00:00",
+ "2/16/2026": "17:00:00",
+ "5/25/2026": "17:00:00",
+ "9/7/2026": "17:00:00",
+ "11/26/2026": "17:00:00"
+ },
+ "bankHolidays": [
+ "1/19/2009",
+ "2/16/2009",
+ "5/25/2009",
+ "7/3/2009",
+ "9/7/2009",
+ "10/12/2009",
+ "11/11/2009",
+ "11/26/2009",
+ "1/18/2010",
+ "2/15/2010",
+ "5/31/2010",
+ "7/5/2010",
+ "9/6/2010",
+ "10/11/2010",
+ "11/11/2010",
+ "11/25/2010",
+ "12/31/2010",
+ "1/17/2011",
+ "2/21/2011",
+ "5/30/2011",
+ "7/4/2011",
+ "9/5/2011",
+ "10/10/2011",
+ "11/11/2011",
+ "11/24/2011",
+ "1/16/2012",
+ "2/20/2012",
+ "5/28/2012",
+ "7/4/2012",
+ "9/3/2012",
+ "10/8/2012",
+ "11/12/2012",
+ "11/22/2012",
+ "1/21/2013",
+ "2/18/2013",
+ "5/27/2013",
+ "7/4/2013",
+ "9/2/2013",
+ "10/14/2013",
+ "11/11/2013",
+ "11/28/2013",
+ "1/20/2014",
+ "2/17/2014",
+ "5/26/2014",
+ "7/4/2014",
+ "9/1/2014",
+ "10/13/2014",
+ "11/11/2014",
+ "11/27/2014",
+ "12/25/2014",
+ "1/1/2015",
+ "1/19/2015",
+ "2/16/2015",
+ "5/25/2015",
+ "7/3/2015",
+ "9/7/2015",
+ "10/12/2015",
+ "11/11/2015",
+ "11/26/2015",
+ "1/18/2016",
+ "2/15/2016",
+ "5/30/2016",
+ "7/4/2016",
+ "9/5/2016",
+ "10/10/2016",
+ "11/11/2016",
+ "11/24/2016",
+ "12/26/2016",
+ "1/2/2017",
+ "1/16/2017",
+ "2/20/2017",
+ "5/29/2017",
+ "7/4/2017",
+ "9/4/2017",
+ "10/9/2017",
+ "11/10/2017",
+ "11/23/2017",
+ "12/25/2017",
+ "1/1/2018",
+ "1/15/2018",
+ "2/19/2018",
+ "5/28/2018",
+ "7/4/2018",
+ "9/3/2018",
+ "10/8/2018",
+ "11/12/2018",
+ "11/22/2018",
+ "12/25/2018",
+ "1/1/2019",
+ "1/21/2019",
+ "2/18/2019",
+ "5/27/2019",
+ "7/4/2019",
+ "9/2/2019",
+ "10/14/2019",
+ "11/11/2019",
+ "11/28/2019",
+ "12/25/2019",
+ "1/1/2020",
+ "1/20/2020",
+ "2/17/2020",
+ "5/25/2020",
+ "7/3/2020",
+ "9/7/2020",
+ "10/12/2020",
+ "11/11/2020",
+ "11/26/2020",
+ "1/18/2021",
+ "2/15/2021",
+ "5/31/2021",
+ "7/5/2021",
+ "9/6/2021",
+ "10/11/2021",
+ "11/11/2021",
+ "11/25/2021",
+ "12/31/2021",
+ "1/17/2022",
+ "2/21/2022",
+ "5/30/2022",
+ "6/20/2022",
+ "7/4/2022",
+ "9/5/2022",
+ "10/10/2022",
+ "11/11/2022",
+ "11/24/2022",
+ "12/26/2022",
+ "1/2/2023",
+ "1/16/2023",
+ "2/20/2023",
+ "5/29/2023",
+ "6/19/2023",
+ "7/4/2023",
+ "9/4/2023",
+ "10/9/2023",
+ "11/11/2023",
+ "11/23/2023",
+ "12/25/2023",
+ "1/1/2024",
+ "1/15/2024",
+ "2/19/2024",
+ "5/27/2024",
+ "6/19/2024",
+ "7/4/2024",
+ "9/2/2024",
+ "10/14/2024",
+ "11/11/2024",
+ "11/28/2024",
+ "12/25/2024",
+ "1/1/2025",
+ "1/20/2025",
+ "2/17/2025",
+ "5/26/2025",
+ "6/19/2025",
+ "7/4/2025",
+ "9/1/2025",
+ "10/13/2025",
+ "11/11/2025",
+ "11/27/2025",
+ "12/25/2025",
+ "1/1/2026",
+ "1/19/2026",
+ "2/16/2026",
+ "5/25/2026",
+ "6/19/2026",
+ "6/18/2027",
+ "7/3/2026",
+ "9/7/2026",
+ "11/26/2026"
+ ]
+ },
+ "Future-cme-M2K": {
+ "dataTimeZone": "UTC",
+ "exchangeTimeZone": "America/New_York",
+ "sunday": [
+ {
+ "start": "18:00:00",
+ "end": "1.00:00:00",
+ "state": "premarket"
+ }
+ ],
+ "monday": [
+ {
+ "start": "00:00:00",
+ "end": "09:30:00",
+ "state": "premarket"
+ },
+ {
+ "start": "09:30:00",
+ "end": "17:00:00",
+ "state": "market"
+ },
+ {
+ "start": "18:00:00",
+ "end": "1.00:00:00",
+ "state": "postmarket"
+ }
+ ],
+ "tuesday": [
+ {
+ "start": "00:00:00",
+ "end": "09:30:00",
+ "state": "premarket"
+ },
+ {
+ "start": "09:30:00",
+ "end": "17:00:00",
+ "state": "market"
+ },
+ {
+ "start": "18:00:00",
+ "end": "1.00:00:00",
+ "state": "postmarket"
+ }
+ ],
+ "wednesday": [
+ {
+ "start": "00:00:00",
+ "end": "09:30:00",
+ "state": "premarket"
+ },
+ {
+ "start": "09:30:00",
+ "end": "17:00:00",
+ "state": "market"
+ },
+ {
+ "start": "18:00:00",
+ "end": "1.00:00:00",
+ "state": "postmarket"
+ }
+ ],
+ "thursday": [
+ {
+ "start": "00:00:00",
+ "end": "09:30:00",
+ "state": "premarket"
+ },
+ {
+ "start": "09:30:00",
+ "end": "17:00:00",
+ "state": "market"
+ },
+ {
+ "start": "18:00:00",
+ "end": "1.00:00:00",
+ "state": "postmarket"
+ }
+ ],
+ "friday": [
+ {
+ "start": "00:00:00",
+ "end": "09:30:00",
+ "state": "premarket"
+ },
+ {
+ "start": "09:30:00",
+ "end": "17:00:00",
+ "state": "market"
+ }
+ ],
+ "saturday": [],
+ "holidays": [
+ "12/25/2026",
+ "1/1/2027"
+ ],
+ "earlyCloses": {
+ "1/19/2009": "11:30:00",
+ "2/16/2009": "11:30:00",
+ "5/25/2009": "11:30:00",
+ "7/3/2009": "11:30:00",
+ "9/7/2009": "11:30:00",
+ "11/26/2009": "11:30:00",
+ "11/27/2009": "13:15:00",
+ "12/24/2009": "13:15:00",
+ "1/18/2010": "11:30:00",
+ "2/15/2010": "11:30:00",
+ "4/2/2010": "09:15:00",
+ "5/31/2010": "11:30:00",
+ "7/5/2010": "11:30:00",
+ "9/6/2010": "11:30:00",
+ "11/25/2010": "11:30:00",
+ "11/26/2010": "13:15:00",
+ "1/17/2011": "11:30:00",
+ "2/21/2011": "11:30:00",
+ "5/30/2011": "11:30:00",
+ "7/4/2011": "11:30:00",
+ "9/5/2011": "11:30:00",
+ "11/24/2011": "11:30:00",
+ "11/25/2011": "13:15:00",
+ "1/16/2012": "11:30:00",
+ "2/20/2012": "11:30:00",
+ "4/6/2012": "09:15:00",
+ "5/28/2012": "11:30:00",
+ "7/3/2012": "13:15:00",
+ "7/4/2012": "11:30:00",
+ "9/3/2012": "11:30:00",
+ "11/22/2012": "11:30:00",
+ "11/23/2012": "13:15:00",
+ "12/24/2012": "13:15:00",
+ "1/21/2013": "11:30:00",
+ "2/18/2013": "11:30:00",
+ "5/27/2013": "11:30:00",
+ "7/3/2013": "13:15:00",
+ "7/4/2013": "11:30:00",
+ "9/2/2013": "11:30:00",
+ "11/28/2013": "11:30:00",
+ "11/29/2013": "13:15:00",
+ "12/24/2013": "13:15:00",
+ "1/20/2014": "11:30:00",
+ "2/17/2014": "11:30:00",
+ "5/26/2014": "13:00:00",
+ "7/3/2014": "13:15:00",
+ "7/4/2014": "13:00:00",
+ "9/1/2014": "13:00:00",
+ "11/27/2014": "13:00:00",
+ "11/28/2014": "13:15:00",
+ "12/24/2014": "13:15:00",
+ "1/19/2015": "13:00:00",
+ "2/16/2015": "13:00:00",
+ "4/3/2015": "09:15:00",
+ "5/25/2015": "13:00:00",
+ "7/3/2015": "13:00:00",
+ "9/7/2015": "13:00:00",
+ "11/26/2015": "13:00:00",
+ "11/27/2015": "13:15:00",
+ "12/24/2015": "13:15:00",
+ "1/18/2016": "13:00:00",
+ "2/15/2016": "13:00:00",
+ "5/30/2016": "13:00:00",
+ "7/4/2016": "13:00:00",
+ "9/5/2016": "13:00:00",
+ "11/24/2016": "13:00:00",
+ "11/25/2016": "13:15:00",
+ "1/16/2017": "13:00:00",
+ "2/20/2017": "13:00:00",
+ "5/29/2017": "13:00:00",
+ "7/3/2017": "13:15:00",
+ "7/4/2017": "13:00:00",
+ "9/4/2017": "13:00:00",
+ "11/23/2017": "13:00:00",
+ "11/24/2017": "13:15:00",
+ "1/15/2018": "13:00:00",
+ "2/19/2018": "13:00:00",
+ "5/28/2018": "13:00:00",
+ "7/3/2018": "13:15:00",
+ "7/4/2018": "13:00:00",
+ "9/3/2018": "13:00:00",
+ "11/22/2018": "13:00:00",
+ "11/23/2018": "13:15:00",
+ "12/24/2018": "13:15:00",
+ "1/21/2019": "13:00:00",
+ "2/18/2019": "13:00:00",
+ "5/27/2019": "13:00:00",
+ "7/3/2019": "13:15:00",
+ "7/4/2019": "13:00:00",
+ "9/2/2019": "13:00:00",
+ "11/28/2019": "13:00:00",
+ "11/29/2019": "13:15:00",
+ "12/24/2019": "13:15:00",
+ "1/20/2020": "13:00:00",
+ "2/17/2020": "13:00:00",
+ "5/25/2020": "13:00:00",
+ "7/3/2020": "13:00:00",
+ "9/7/2020": "13:00:00",
+ "11/26/2020": "13:00:00",
+ "11/27/2020": "13:15:00",
+ "12/24/2020": "13:15:00",
+ "1/18/2021": "13:00:00",
+ "2/15/2021": "13:00:00",
+ "4/2/2021": "09:15:00",
+ "5/31/2021": "13:00:00",
+ "7/5/2021": "13:00:00",
+ "9/6/2021": "13:00:00",
+ "11/25/2021": "13:00:00",
+ "11/26/2021": "13:15:00",
+ "1/17/2022": "13:00:00",
+ "2/21/2022": "13:00:00",
+ "5/30/2022": "13:00:00",
+ "6/20/2022": "13:00:00",
+ "7/4/2022": "13:00:00",
+ "9/5/2022": "13:00:00",
+ "11/24/2022": "13:00:00",
+ "11/25/2022": "13:15:00",
+ "1/16/2023": "13:00:00",
+ "2/20/2023": "13:00:00",
+ "4/7/2023": "09:15:00",
+ "5/29/2023": "13:00:00",
+ "6/19/2023": "13:00:00",
+ "7/4/2023": "13:00:00",
+ "9/4/2023": "13:00:00",
+ "11/23/2023": "13:00:00",
+ "11/24/2023": "13:15:00",
+ "1/15/2024": "13:00:00",
+ "2/19/2024": "13:00:00",
+ "5/27/2024": "13:00:00",
+ "6/19/2024": "13:00:00",
+ "7/4/2024": "13:00:00",
+ "9/2/2024": "13:00:00",
+ "11/28/2024": "13:00:00",
+ "12/24/2024": "13:15:00",
+ "12/31/2024": "17:00:00",
+ "1/20/2025": "13:00:00",
+ "2/17/2025": "13:00:00",
+ "4/17/2025": "17:00:00",
+ "5/26/2025": "13:00:00",
+ "6/19/2025": "13:00:00",
+ "7/3/2025": "13:15:00",
+ "7/4/2025": "13:00:00",
+ "9/1/2025": "13:00:00",
+ "11/27/2025": "13:00:00",
+ "11/28/2025": "13:15:00",
+ "12/24/2025": "13:15:00",
+ "12/25/2025": "17:00:00",
+ "12/31/2025": "17:00:00",
+ "1/19/2026": "13:00:00",
+ "2/16/2026": "13:00:00",
+ "4/3/2026": "09:15:00",
+ "5/25/2026": "13:00:00",
+ "6/19/2026": "13:00:00",
+ "6/18/2027": "13:00:00",
+ "7/3/2026": "13:00:00",
+ "9/7/2026": "13:00:00",
+ "11/26/2026": "13:00:00",
+ "11/27/2026": "13:15:00",
+ "12/24/2026": "13:15:00",
+ "12/31/2026": "17:00:00"
+ },
+ "lateOpens": {
+ "1/19/2009": "18:00:00",
+ "2/16/2009": "18:00:00",
+ "5/25/2009": "18:00:00",
+ "9/7/2009": "18:00:00",
+ "11/26/2009": "18:00:00",
+ "1/18/2010": "18:00:00",
+ "2/15/2010": "18:00:00",
+ "5/31/2010": "18:00:00",
+ "7/5/2010": "18:00:00",
+ "9/6/2010": "18:00:00",
+ "11/25/2010": "18:00:00",
+ "1/17/2011": "18:00:00",
+ "2/21/2011": "18:00:00",
+ "5/30/2011": "18:00:00",
+ "7/4/2011": "18:00:00",
+ "9/5/2011": "18:00:00",
+ "11/24/2011": "18:00:00",
+ "1/16/2012": "18:00:00",
+ "2/20/2012": "18:00:00",
+ "5/28/2012": "18:00:00",
+ "7/4/2012": "18:00:00",
+ "9/3/2012": "18:00:00",
+ "11/22/2012": "18:00:00",
+ "1/21/2013": "18:00:00",
+ "2/18/2013": "18:00:00",
+ "5/27/2013": "18:00:00",
+ "7/4/2013": "18:00:00",
+ "9/2/2013": "18:00:00",
+ "11/28/2013": "18:00:00",
+ "1/20/2014": "18:00:00",
+ "2/17/2014": "18:00:00",
+ "5/26/2014": "18:00:00",
+ "9/1/2014": "18:00:00",
+ "11/27/2014": "18:00:00",
+ "1/19/2015": "18:00:00",
+ "2/16/2015": "18:00:00",
+ "5/25/2015": "18:00:00",
+ "9/7/2015": "18:00:00",
+ "11/26/2015": "18:00:00",
+ "1/18/2016": "18:00:00",
+ "2/15/2016": "18:00:00",
+ "5/30/2016": "18:00:00",
+ "7/4/2016": "18:00:00",
+ "9/5/2016": "18:00:00",
+ "11/24/2016": "18:00:00",
+ "1/16/2017": "18:00:00",
+ "2/20/2017": "18:00:00",
+ "5/29/2017": "18:00:00",
+ "7/4/2017": "18:00:00",
+ "9/4/2017": "18:00:00",
+ "11/23/2017": "18:00:00",
+ "1/15/2018": "18:00:00",
+ "2/19/2018": "18:00:00",
+ "5/28/2018": "18:00:00",
+ "7/4/2018": "18:00:00",
+ "9/3/2018": "18:00:00",
+ "11/22/2018": "18:00:00",
+ "1/21/2019": "18:00:00",
+ "2/18/2019": "18:00:00",
+ "5/27/2019": "18:00:00",
+ "7/4/2019": "18:00:00",
+ "9/2/2019": "18:00:00",
+ "11/28/2019": "18:00:00",
+ "1/20/2020": "18:00:00",
+ "2/17/2020": "18:00:00",
+ "5/25/2020": "18:00:00",
+ "9/7/2020": "18:00:00",
+ "11/26/2020": "18:00:00",
+ "1/18/2021": "18:00:00",
+ "2/15/2021": "18:00:00",
+ "5/31/2021": "18:00:00",
+ "7/5/2021": "18:00:00",
+ "9/6/2021": "18:00:00",
+ "11/25/2021": "18:00:00",
+ "1/17/2022": "18:00:00",
+ "2/21/2022": "18:00:00",
+ "5/30/2022": "18:00:00",
+ "6/20/2022": "18:00:00",
+ "7/4/2022": "18:00:00",
+ "9/5/2022": "18:00:00",
+ "11/24/2022": "18:00:00",
+ "1/16/2023": "18:00:00",
+ "2/20/2023": "18:00:00",
+ "5/29/2023": "18:00:00",
+ "6/19/2023": "18:00:00",
+ "7/4/2023": "18:00:00",
+ "9/4/2023": "18:00:00",
+ "11/23/2023": "18:00:00",
+ "12/25/2023": "18:00:00",
+ "1/1/2024": "18:00:00",
+ "1/15/2024": "18:00:00",
+ "2/19/2024": "18:00:00",
+ "5/27/2024": "18:00:00",
+ "6/19/2024": "18:00:00",
+ "7/4/2024": "18:00:00",
+ "9/2/2024": "18:00:00",
+ "11/28/2024": "18:00:00",
+ "12/25/2024": "18:00:00",
+ "1/1/2025": "18:00:00",
+ "1/20/2025": "18:00:00",
+ "2/17/2025": "18:00:00",
+ "5/26/2025": "18:00:00",
+ "6/19/2025": "18:00:00",
+ "7/3/2025": "18:00:00",
+ "9/1/2025": "18:00:00",
+ "11/27/2025": "18:00:00",
+ "12/25/2025": "18:00:00",
+ "1/1/2026": "18:00:00",
+ "1/19/2026": "18:00:00",
+ "2/16/2026": "18:00:00",
+ "5/25/2026": "18:00:00",
+ "9/7/2026": "18:00:00",
+ "11/26/2026": "18:00:00"
},
"bankHolidays": [
"1/19/2009",
@@ -106306,7 +107993,7 @@
"11/26/2026"
]
},
- "Future-cme-M2K": {
+ "Future-cbot-MYM": {
"dataTimeZone": "UTC",
"exchangeTimeZone": "America/New_York",
"sunday": [
@@ -106630,6 +108317,7 @@
"1/20/2020": "18:00:00",
"2/17/2020": "18:00:00",
"5/25/2020": "18:00:00",
+ "7/3/2020": "18:00:00",
"9/7/2020": "18:00:00",
"11/26/2020": "18:00:00",
"1/18/2021": "18:00:00",
@@ -106849,7 +108537,7 @@
"11/26/2026"
]
},
- "Future-cbot-MYM": {
+ "Future-comex-MGC": {
"dataTimeZone": "UTC",
"exchangeTimeZone": "America/New_York",
"sunday": [
@@ -106941,169 +108629,169 @@
],
"saturday": [],
"holidays": [
+ "4/3/2026",
"12/25/2026",
"1/1/2027"
],
"earlyCloses": {
- "1/19/2009": "11:30:00",
- "2/16/2009": "11:30:00",
- "5/25/2009": "11:30:00",
- "7/3/2009": "11:30:00",
- "9/7/2009": "11:30:00",
- "11/26/2009": "11:30:00",
- "11/27/2009": "13:15:00",
- "12/24/2009": "13:15:00",
- "1/18/2010": "11:30:00",
- "2/15/2010": "11:30:00",
- "4/2/2010": "09:15:00",
- "5/31/2010": "11:30:00",
- "7/5/2010": "11:30:00",
- "9/6/2010": "11:30:00",
- "11/25/2010": "11:30:00",
- "11/26/2010": "13:15:00",
- "1/17/2011": "11:30:00",
- "2/21/2011": "11:30:00",
- "5/30/2011": "11:30:00",
- "7/4/2011": "11:30:00",
- "9/5/2011": "11:30:00",
- "11/24/2011": "11:30:00",
- "11/25/2011": "13:15:00",
- "1/16/2012": "11:30:00",
- "2/20/2012": "11:30:00",
- "4/6/2012": "09:15:00",
- "5/28/2012": "11:30:00",
- "7/3/2012": "13:15:00",
- "7/4/2012": "11:30:00",
- "9/3/2012": "11:30:00",
- "11/22/2012": "11:30:00",
- "11/23/2012": "13:15:00",
- "12/24/2012": "13:15:00",
- "1/21/2013": "11:30:00",
- "2/18/2013": "11:30:00",
- "5/27/2013": "11:30:00",
- "7/3/2013": "13:15:00",
- "7/4/2013": "11:30:00",
- "9/2/2013": "11:30:00",
- "11/28/2013": "11:30:00",
- "11/29/2013": "13:15:00",
- "12/24/2013": "13:15:00",
- "1/20/2014": "11:30:00",
- "2/17/2014": "11:30:00",
+ "1/19/2009": "17:15:00",
+ "2/16/2009": "17:15:00",
+ "5/22/2009": "16:15:00",
+ "5/25/2009": "13:15:00",
+ "7/3/2009": "13:30:00",
+ "9/4/2009": "16:15:00",
+ "9/7/2009": "13:15:00",
+ "10/9/2009": "16:15:00",
+ "11/26/2009": "13:15:00",
+ "11/27/2009": "13:45:00",
+ "12/24/2009": "13:45:00",
+ "1/15/2010": "16:15:00",
+ "1/18/2010": "13:15:00",
+ "2/12/2010": "16:15:00",
+ "2/15/2010": "13:15:00",
+ "5/28/2010": "16:15:00",
+ "5/31/2010": "13:15:00",
+ "7/2/2010": "16:15:00",
+ "7/5/2010": "13:15:00",
+ "9/3/2010": "16:15:00",
+ "9/6/2010": "13:15:00",
+ "10/8/2010": "16:15:00",
+ "11/25/2010": "13:15:00",
+ "11/26/2010": "13:45:00",
+ "12/31/2010": "16:15:00",
+ "1/14/2011": "16:15:00",
+ "1/17/2011": "13:15:00",
+ "2/21/2011": "13:15:00",
+ "5/30/2011": "13:15:00",
+ "7/4/2011": "13:15:00",
+ "9/5/2011": "13:15:00",
+ "11/24/2011": "13:15:00",
+ "11/25/2011": "13:45:00",
+ "1/16/2012": "13:15:00",
+ "2/20/2012": "13:15:00",
+ "5/28/2012": "13:15:00",
+ "7/4/2012": "13:15:00",
+ "9/3/2012": "13:15:00",
+ "11/22/2012": "13:15:00",
+ "11/23/2012": "13:45:00",
+ "12/24/2012": "13:45:00",
+ "1/21/2013": "13:15:00",
+ "2/18/2013": "13:15:00",
+ "5/27/2013": "13:15:00",
+ "7/4/2013": "13:15:00",
+ "9/2/2013": "13:15:00",
+ "11/28/2013": "13:15:00",
+ "11/29/2013": "13:45:00",
+ "12/24/2013": "13:45:00",
+ "1/20/2014": "13:15:00",
+ "2/17/2014": "13:15:00",
"5/26/2014": "13:00:00",
- "7/3/2014": "13:15:00",
"7/4/2014": "13:00:00",
"9/1/2014": "13:00:00",
"11/27/2014": "13:00:00",
- "11/28/2014": "13:15:00",
- "12/24/2014": "13:15:00",
+ "11/28/2014": "13:45:00",
+ "12/24/2014": "13:45:00",
"1/19/2015": "13:00:00",
"2/16/2015": "13:00:00",
- "4/3/2015": "09:15:00",
"5/25/2015": "13:00:00",
"7/3/2015": "13:00:00",
"9/7/2015": "13:00:00",
"11/26/2015": "13:00:00",
- "11/27/2015": "13:15:00",
- "12/24/2015": "13:15:00",
+ "11/27/2015": "13:45:00",
+ "12/24/2015": "13:45:00",
"1/18/2016": "13:00:00",
"2/15/2016": "13:00:00",
"5/30/2016": "13:00:00",
"7/4/2016": "13:00:00",
"9/5/2016": "13:00:00",
"11/24/2016": "13:00:00",
- "11/25/2016": "13:15:00",
+ "11/25/2016": "13:45:00",
"1/16/2017": "13:00:00",
"2/20/2017": "13:00:00",
"5/29/2017": "13:00:00",
- "7/3/2017": "13:15:00",
"7/4/2017": "13:00:00",
"9/4/2017": "13:00:00",
"11/23/2017": "13:00:00",
- "11/24/2017": "13:15:00",
+ "11/24/2017": "13:45:00",
"1/15/2018": "13:00:00",
"2/19/2018": "13:00:00",
"5/28/2018": "13:00:00",
- "7/3/2018": "13:15:00",
"7/4/2018": "13:00:00",
"9/3/2018": "13:00:00",
"11/22/2018": "13:00:00",
- "11/23/2018": "13:15:00",
- "12/24/2018": "13:15:00",
+ "11/23/2018": "13:45:00",
+ "12/24/2018": "13:45:00",
"1/21/2019": "13:00:00",
"2/18/2019": "13:00:00",
"5/27/2019": "13:00:00",
- "7/3/2019": "13:15:00",
"7/4/2019": "13:00:00",
"9/2/2019": "13:00:00",
"11/28/2019": "13:00:00",
- "11/29/2019": "13:15:00",
- "12/24/2019": "13:15:00",
+ "11/29/2019": "13:45:00",
+ "12/24/2019": "13:45:00",
"1/20/2020": "13:00:00",
"2/17/2020": "13:00:00",
"5/25/2020": "13:00:00",
"7/3/2020": "13:00:00",
"9/7/2020": "13:00:00",
"11/26/2020": "13:00:00",
- "11/27/2020": "13:15:00",
- "12/24/2020": "13:15:00",
+ "11/27/2020": "13:45:00",
+ "12/24/2020": "13:45:00",
"1/18/2021": "13:00:00",
"2/15/2021": "13:00:00",
- "4/2/2021": "09:15:00",
"5/31/2021": "13:00:00",
"7/5/2021": "13:00:00",
"9/6/2021": "13:00:00",
"11/25/2021": "13:00:00",
- "11/26/2021": "13:15:00",
- "1/17/2022": "13:00:00",
- "2/21/2022": "13:00:00",
- "5/30/2022": "13:00:00",
- "6/20/2022": "13:00:00",
- "7/4/2022": "13:00:00",
- "9/5/2022": "13:00:00",
- "11/24/2022": "13:00:00",
- "11/25/2022": "13:15:00",
- "1/16/2023": "13:00:00",
- "2/20/2023": "13:00:00",
- "4/7/2023": "09:15:00",
- "5/29/2023": "13:00:00",
- "6/19/2023": "13:00:00",
- "7/4/2023": "13:00:00",
- "9/4/2023": "13:00:00",
- "11/23/2023": "13:00:00",
- "11/24/2023": "13:15:00",
- "1/15/2024": "13:00:00",
- "2/19/2024": "13:00:00",
- "5/27/2024": "13:00:00",
- "6/19/2024": "13:00:00",
- "7/4/2024": "13:00:00",
- "9/2/2024": "13:00:00",
- "11/28/2024": "13:00:00",
- "12/24/2024": "13:15:00",
+ "11/26/2021": "13:45:00",
+ "1/17/2022": "14:30:00",
+ "2/21/2022": "14:30:00",
+ "5/30/2022": "14:30:00",
+ "6/20/2022": "14:30:00",
+ "7/4/2022": "14:30:00",
+ "9/5/2022": "14:30:00",
+ "11/24/2022": "14:30:00",
+ "11/25/2022": "13:45:00",
+ "1/16/2023": "14:30:00",
+ "2/20/2023": "14:30:00",
+ "5/29/2023": "14:30:00",
+ "6/19/2023": "14:30:00",
+ "7/4/2023": "14:30:00",
+ "9/4/2023": "14:30:00",
+ "11/23/2023": "14:30:00",
+ "11/24/2023": "13:45:00",
+ "1/15/2024": "14:30:00",
+ "2/19/2024": "14:30:00",
+ "3/28/2024": "17:00:00",
+ "5/27/2024": "14:30:00",
+ "6/19/2024": "14:30:00",
+ "7/4/2024": "14:30:00",
+ "9/2/2024": "14:30:00",
+ "11/28/2024": "14:30:00",
+ "12/24/2024": "13:45:00",
"12/31/2024": "17:00:00",
- "1/20/2025": "13:00:00",
- "2/17/2025": "13:00:00",
+ "1/20/2025": "14:30:00",
+ "2/17/2025": "14:30:00",
"4/17/2025": "17:00:00",
- "5/26/2025": "13:00:00",
- "6/19/2025": "13:00:00",
- "7/3/2025": "13:15:00",
+ "5/26/2025": "14:30:00",
+ "6/19/2025": "14:30:00",
"7/4/2025": "13:00:00",
- "9/1/2025": "13:00:00",
- "11/27/2025": "13:00:00",
- "11/28/2025": "13:15:00",
- "12/24/2025": "13:15:00",
- "12/25/2025": "17:00:00",
+ "9/1/2025": "14:30:00",
+ "11/27/2025": "14:30:00",
+ "11/28/2025": "14:45:00",
+ "12/24/2025": "13:45:00",
"12/31/2025": "17:00:00",
- "1/19/2026": "13:00:00",
- "2/16/2026": "13:00:00",
- "4/3/2026": "09:15:00",
- "5/25/2026": "13:00:00",
+ "1/19/2026": "14:30:00",
+ "2/16/2026": "14:30:00",
+ "4/2/2026": "17:00:00",
+ "5/25/2026": "14:30:00",
"6/19/2026": "13:00:00",
"6/18/2027": "13:00:00",
"7/3/2026": "13:00:00",
- "9/7/2026": "13:00:00",
- "11/26/2026": "13:00:00",
- "11/27/2026": "13:15:00",
- "12/24/2026": "13:15:00",
+ "9/7/2026": "14:30:00",
+ "11/26/2026": "14:30:00",
+ "11/27/2026": "14:45:00",
+ "12/24/2026": "13:45:00",
"12/31/2026": "17:00:00"
},
"lateOpens": {
@@ -107211,7 +108899,6 @@
"2/17/2025": "18:00:00",
"5/26/2025": "18:00:00",
"6/19/2025": "18:00:00",
- "7/3/2025": "18:00:00",
"9/1/2025": "18:00:00",
"11/27/2025": "18:00:00",
"12/25/2025": "18:00:00",
@@ -107248,6 +108935,8 @@
"10/10/2011",
"11/11/2011",
"11/24/2011",
+ "12/26/2011",
+ "1/2/2012",
"1/16/2012",
"2/20/2012",
"5/28/2012",
@@ -107256,6 +108945,8 @@
"10/8/2012",
"11/12/2012",
"11/22/2012",
+ "12/25/2012",
+ "1/1/2013",
"1/21/2013",
"2/18/2013",
"5/27/2013",
@@ -107264,6 +108955,8 @@
"10/14/2013",
"11/11/2013",
"11/28/2013",
+ "12/25/2013",
+ "1/1/2014",
"1/20/2014",
"2/17/2014",
"5/26/2014",
@@ -107389,11 +109082,10 @@
"6/19/2026",
"6/18/2027",
"7/3/2026",
- "9/7/2026",
"11/26/2026"
]
},
- "Future-comex-MGC": {
+ "Future-comex-1OZ": {
"dataTimeZone": "UTC",
"exchangeTimeZone": "America/New_York",
"sunday": [
diff --git a/Data/symbol-properties/symbol-properties-database.csv b/Data/symbol-properties/symbol-properties-database.csv
index b85ac3c0753e..24b37c619b74 100644
--- a/Data/symbol-properties/symbol-properties-database.csv
+++ b/Data/symbol-properties/symbol-properties-database.csv
@@ -225,6 +225,8 @@ cbot,BWF,future,Black Sea Wheat Financially Settled (Platts) Futures,USD,50.0,0.
cbot,EH,future,Ethanol Futures,USD,29000.0,0.001,1.0
cbot,F1U,future,5-Year USD MAC Swap Futures,USD,1000.0,0.0078125,1.0
cbot,KE,future,KC HRW Wheat Futures,USD,5000.0,0.0025,1.0,,1,100
+cbot,MTN,future,Micro Ultra 10-Year U.S. Treasury Note Futures,USD,100.0,0.015625,1.0
+cbot,MWN,future,Micro Ultra U.S. Treasury Bond Futures,USD,100.0,0.03125,1.0
cbot,MYM,future,Micro E-mini Dow Jones Industrial Average Index Futures,USD,0.5,1,1
cbot,TN,future,Ultra 10-Year U.S. Treasury Note Futures,USD,1000.0,0.015625,1.0
cbot,UB,future,Ultra U.S. Treasury Bond Futures,USD,1000.0,0.03125,1.0
@@ -307,6 +309,7 @@ cme,RX,future,DJRE Futures,USD,100.0,0.1,1.0
cme,SDA,future,SP500 S&P 500 Annual Dividend Index future,USD,250.0,0.05,1.0
cme,TPD,future,TOPIX USD Futures,USD,50.0,0.5,1.0
cme,TPY,future,TOPIX JPY Futures,JPY,5000.0,0.5,1.0
+comex,1OZ,future,1-Ounce Gold Futures,USD,1,0.25,1
comex,AUP,future,Aluminum MW U.S. Transaction Premium Platts (25MT) Futures,USD,55116.0,1e-05,1.0
comex,EDP,future,Aluminium European Premium Duty-Paid (Metal Bulletin) Futures,USD,25.0,0.01,1.0
comex,GC,future,Gold Futures,USD,100.0,0.1,1.0
diff --git a/Tests/Common/Securities/Futures/FuturesExpiryFunctionsTests.cs b/Tests/Common/Securities/Futures/FuturesExpiryFunctionsTests.cs
index e214bfb8128b..d54a59fcb623 100644
--- a/Tests/Common/Securities/Futures/FuturesExpiryFunctionsTests.cs
+++ b/Tests/Common/Securities/Futures/FuturesExpiryFunctionsTests.cs
@@ -388,6 +388,8 @@ public void MicroCrudeOilExpiration(string symbol, string dateStr, string expect
[TestCase(QuantConnect.Securities.Futures.Financials.UltraUSTreasuryBond, TwelveOne)]
[TestCase(QuantConnect.Securities.Futures.Financials.UltraTenYearUSTreasuryNote, Zero)]
[TestCase(QuantConnect.Securities.Futures.Financials.MicroY10TreasuryNote, Zero)]
+ [TestCase(QuantConnect.Securities.Futures.Financials.MicroUltraTenYearUSTreasuryNote, Zero)]
+ [TestCase(QuantConnect.Securities.Futures.Financials.MicroUltraUSTreasuryBond, Zero)]
public void FinancialsExpiryDateFunction_WithDifferentDates_ShouldFollowContract(string symbol, string dayTime)
{
Assert.IsTrue(_data.ContainsKey(symbol), "Symbol " + symbol + " not present in Test Data");
@@ -505,6 +507,7 @@ public void LumberPulpExpiryDateFunction_WithDifferentDates_ShouldFollowContract
[TestCase(QuantConnect.Securities.Futures.Metals.MiniNYSilver, OneTwentyFivePM)]
[TestCase(QuantConnect.Securities.Futures.Metals.Gold100Oz, OneThirtyPM)]
[TestCase(QuantConnect.Securities.Futures.Metals.Silver5000Oz, OneTwentyFivePM)]
+ [TestCase(QuantConnect.Securities.Futures.Metals.OneOunceGold, Zero)]
public void MetalsExpiryDateFunction_WithDifferentDates_ShouldFollowContract(string symbol, string dayTime)
{
Assert.IsTrue(_data.ContainsKey(symbol), "Symbol " + symbol + " not present in Test Data");
diff --git a/Tests/TestData/FuturesExpiryFunctionsTestData.xml b/Tests/TestData/FuturesExpiryFunctionsTestData.xml
index 24e92306d4fd..ef3836389bd3 100644
Binary files a/Tests/TestData/FuturesExpiryFunctionsTestData.xml and b/Tests/TestData/FuturesExpiryFunctionsTestData.xml differ