/* * 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 System.Collections.Generic; using System.Linq; using QuantConnect.Data; using QuantConnect.Data.UniverseSelection; using QuantConnect.Orders; using QuantConnect.Securities; namespace QuantConnect.Algorithm.CSharp { /// /// Universe Selection regression algorithm simulates an edge case. /// In one week, Google listed two new symbols, delisted one of them and changed tickers. /// public class UniverseSelectionRegressionAlgorithm : QCAlgorithm { private HashSet _delistedSymbols = new HashSet(); private SecurityChanges _changes; /// /// Initialise the data and resolution required, as well as the cash and start-end dates for your algorithm. All algorithms must initialized. /// public override void Initialize() { UniverseSettings.Resolution = Resolution.Daily; SetStartDate(2014, 03, 22); //Set Start Date SetEndDate(2014, 04, 07); //Set End Date SetCash(100000); //Set Strategy Cash // Find more symbols here: http://quantconnect.com/data // security that exists with no mappings AddSecurity(SecurityType.Equity, "SPY", Resolution.Daily); // security that doesn't exist until half way in backtest (comes in as GOOCV) AddSecurity(SecurityType.Equity, "GOOG", Resolution.Daily); AddUniverse(coarse => { // select the various google symbols over the period return from c in coarse let sym = c.Symbol.Value where sym == "GOOG" || sym == "GOOCV" || sym == "GOOAV" || sym == "GOOGL" select c.Symbol; // Before March 28th 2014: // - Only GOOG T1AZ164W5VTX existed // On March 28th 2014 // - GOOAV VP83T1ZUHROL and GOOCV VP83T1ZUHROL are listed // On April 02nd 2014 // - GOOAV VP83T1ZUHROL is delisted // - GOOG T1AZ164W5VTX becomes GOOGL // - GOOCV VP83T1ZUHROL becomes GOOG }); } /// /// OnData event is the primary entry point for your algorithm. Each new data point will be pumped in here. /// /// Slice object keyed by symbol containing the stock data public override void OnData(Slice data) { if (Transactions.OrdersCount == 0) { MarketOrder("SPY", 100); } foreach (var kvp in data.Delistings) { _delistedSymbols.Add(kvp.Key); } if (_changes != null && _changes.AddedSecurities.All(x => data.Bars.ContainsKey(x.Symbol))) { foreach (var security in _changes.AddedSecurities) { Log(Time + ": Added Security: " + security.Symbol.ID); MarketOnOpenOrder(security.Symbol, 100); } foreach (var security in _changes.RemovedSecurities) { Log(Time + ": Removed Security: " + security.Symbol.ID); if (!_delistedSymbols.Contains(security.Symbol)) { MarketOnOpenOrder(security.Symbol, -100); } } _changes = null; } } public override void OnSecuritiesChanged(SecurityChanges changes) { _changes = changes; } public override void OnOrderEvent(OrderEvent orderEvent) { if (orderEvent.Status == OrderStatus.Submitted) { Log(Time + ": Submitted: " + Transactions.GetOrderById(orderEvent.OrderId)); } if (orderEvent.Status.IsFill()) { Log(Time + ": Filled: " + Transactions.GetOrderById(orderEvent.OrderId)); } } public override void OnEndOfAlgorithm() { foreach (var security in Portfolio.Securities.Values.Where(x => x.Invested)) { // At the end, we should hold 100 shares of: // - SPY (bought on March, 25th 2014), // - GOOG T1AZ164W5VTX (bought on March, 26th 2014), // - GOOCV VP83T1ZUHROL (bought on March, 28th 2014). AssertQuantity(security, 100); } } private void AssertQuantity(Security security, int expected) { var actual = security.Holdings.Quantity; if (actual != expected) { var symbol = security.Symbol; throw new Exception(string.Format("{0}({1}) expected {2}, but received {3}.", symbol, symbol.ID, expected, actual)); } } } }