/* * 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; using QuantConnect.Interfaces; 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, IRegressionAlgorithmDefinition { 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) { // can access the current set of active securitie through UniverseManager.ActiveSecurities Log(Time + ": Active Securities: " + string.Join(", ", UniverseManager.ActiveSecurities.Keys)); // verify we don't receive data for inactive securities var inactiveSymbols = data.Keys .Where(sym => !UniverseManager.ActiveSecurities.ContainsKey(sym)) // on daily data we'll get the last data point and the delisting at the same time .Where(sym => !data.Delistings.ContainsKey(sym) || data.Delistings[sym].Type != DelistingType.Delisted) .ToList(); if (inactiveSymbols.Any()) { var symbols = string.Join(", ", inactiveSymbols); throw new Exception($"Received data for non-active security: {symbols}."); } 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)); } } /// /// This is used by the regression test system to indicate if the open source Lean repository has the required data to run this algorithm. /// public bool CanRunLocally { get; } = true; /// /// This is used by the regression test system to indicate which languages this algorithm is written in. /// public Language[] Languages { get; } = { Language.CSharp, Language.Python }; /// /// This is used by the regression test system to indicate what the expected statistics are from running the algorithm /// public Dictionary ExpectedStatistics => new Dictionary { {"Total Trades", "5"}, {"Average Win", "0.68%"}, {"Average Loss", "0%"}, {"Compounding Annual Return", "-73.924%"}, {"Drawdown", "6.600%"}, {"Expectancy", "0"}, {"Net Profit", "-6.069%"}, {"Sharpe Ratio", "-4.008"}, {"Loss Rate", "0%"}, {"Win Rate", "100%"}, {"Profit-Loss Ratio", "0"}, {"Alpha", "-0.704"}, {"Beta", "-28.684"}, {"Annual Standard Deviation", "0.316"}, {"Annual Variance", "0.1"}, {"Information Ratio", "-4.069"}, {"Tracking Error", "0.316"}, {"Treynor Ratio", "0.044"}, {"Total Fees", "$5.00"} }; } }