6bd38ece77
Time sync: * Data feeds are required to time sync in UTC time * TimeSlice.Time is now in UTC IAlgorithm * Time is now exclusively the algorithm's local time zone * Added UtcTime * SetDateTime( DateTime ) accepts a UTC time and is internally converted SubscriptionDataConfig * Adds market and time zone as required ctor parameters SecurityExchange * Now passes most calls directly through to SecurityExchangeHours class SecurityExchangeHours * Holds market hours for each day of week (LocalMarketHours) * Talks in terms of local times in the SecurityExchangeHours.TimeZone time zone Data/market-hours/ * New data folder to hold market hour information * Includes market-hours-database.csv to hold market hours per market/symbol/security (see doc in file) * Includes holidays-usa.csv to hold holidays for 'usa' market + The holiday files follow the pattern 'holidays-*.csv' where * is the market TimeKeeper * Receives updates in UTC time * Passes that to LocalTimeKeeper's who lazily evaluate the time in their respective time zones * Eventually this can grow to be the sole source of time in the algorithm's scope MISC: * Fixes exception thrown when exiting LiveTradingDataFeed * Fixes exception thrown when exiting FileSystemDataFeed * Fixes exception thrown when exiting StatusPing * Simplify FillForwardEnumerator logic with GetNextMarketOpen * Adds many time zones, see TimeZones.cs
39 lines
1.3 KiB
C#
39 lines
1.3 KiB
C#
/*
|
|
* 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.
|
|
*/
|
|
|
|
using System;
|
|
using NodaTime;
|
|
using NUnit.Framework;
|
|
|
|
namespace QuantConnect.Tests.Common
|
|
{
|
|
[TestFixture]
|
|
public class TimeZonesTest
|
|
{
|
|
[Test]
|
|
public void TimeZonesLoadFromTzdb()
|
|
{
|
|
// verifies each of the fields in the TimeZones class can be retrieved.
|
|
foreach (var field in typeof(TimeZones).GetFields())
|
|
{
|
|
var value = field.GetValue(null);
|
|
Assert.IsNotNull(value);
|
|
Assert.IsInstanceOf(typeof (DateTimeZone), value);
|
|
Console.WriteLine(((DateTimeZone)value).Id);
|
|
}
|
|
}
|
|
}
|
|
}
|