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
78 lines
2.8 KiB
C#
78 lines
2.8 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 NUnit.Framework;
|
|
|
|
namespace QuantConnect.Tests.Common
|
|
{
|
|
[TestFixture]
|
|
public class TimeKeeperTests
|
|
{
|
|
[Test]
|
|
public void ConstructsLocalTimeKeepers()
|
|
{
|
|
var reference = new DateTime(2000, 01, 01);
|
|
var timeKeeper = new TimeKeeper(reference, new[] { TimeZones.NewYork });
|
|
Assert.IsNotNull(timeKeeper.GetLocalTimeKeeper(TimeZones.NewYork));
|
|
}
|
|
|
|
[Test]
|
|
public void TimeKeeperReportsUpdatedLocalTimes()
|
|
{
|
|
var reference = new DateTime(2000, 01, 01);
|
|
var timeKeeper = new TimeKeeper(reference, new[] { TimeZones.NewYork });
|
|
var localTime = timeKeeper.GetTimeIn(TimeZones.NewYork);
|
|
|
|
timeKeeper.SetUtcDateTime(reference.AddDays(1));
|
|
|
|
Assert.AreEqual(localTime.AddDays(1), timeKeeper.GetTimeIn(TimeZones.NewYork));
|
|
|
|
timeKeeper.SetUtcDateTime(reference.AddDays(2));
|
|
|
|
Assert.AreEqual(localTime.AddDays(2), timeKeeper.GetTimeIn(TimeZones.NewYork));
|
|
}
|
|
|
|
[Test]
|
|
public void LocalTimeKeepersGetTimeUpdates()
|
|
{
|
|
var reference = new DateTime(2000, 01, 01);
|
|
var timeKeeper = new TimeKeeper(reference, new[] { TimeZones.NewYork });
|
|
var localTimeKeeper = timeKeeper.GetLocalTimeKeeper(TimeZones.NewYork);
|
|
var localTime = localTimeKeeper.LocalTime;
|
|
|
|
timeKeeper.SetUtcDateTime(reference.AddDays(1));
|
|
|
|
Assert.AreEqual(localTime.AddDays(1), localTimeKeeper.LocalTime);
|
|
|
|
timeKeeper.SetUtcDateTime(reference.AddDays(2));
|
|
|
|
Assert.AreEqual(localTime.AddDays(2), localTimeKeeper.LocalTime);
|
|
}
|
|
|
|
[Test]
|
|
public void AddingDuplicateTimeZoneDoesntAdd()
|
|
{
|
|
var reference = new DateTime(2000, 01, 01);
|
|
var timeKeeper = new TimeKeeper(reference, new[] { TimeZones.NewYork });
|
|
var localTimeKeeper = timeKeeper.GetLocalTimeKeeper(TimeZones.NewYork);
|
|
|
|
timeKeeper.AddTimeZone(TimeZones.NewYork);
|
|
|
|
Assert.AreEqual(localTimeKeeper, timeKeeper.GetLocalTimeKeeper(TimeZones.NewYork));
|
|
}
|
|
}
|
|
}
|