Files
quantconnect--lean/Algorithm.CSharp/UniverseSelectionRegressionAlgorithm.cs
T
snugs f296d666ee Implements user defined universes
This places all security subscriptions within a universes
Subscriptions generated via calls to AddSecurity are place in a UserDefinedUniverse
UserDefinedUniverse will serve up a predetermined list of symbols on a requested interval
LiveTradingDataFeed - reworked custom enumerators to use RefreshEnumerator as wrapper for rate limitting
2015-10-21 13:05:17 -04:00

121 lines
4.5 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 System.Collections.Generic;
using System.Linq;
using QuantConnect.Data;
using QuantConnect.Data.UniverseSelection;
using QuantConnect.Orders;
namespace QuantConnect.Algorithm.CSharp
{
/// <summary>
/// Basic template algorithm simply initializes the date range and cash
/// </summary>
public class UniverseSelectionRegressionAlgorithm : QCAlgorithm
{
private HashSet<Symbol> _delistedSymbols = new HashSet<Symbol>();
private SecurityChanges _changes;
/// <summary>
/// Initialise the data and resolution required, as well as the cash and start-end dates for your algorithm. All algorithms must initialized.
/// </summary>
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);
SetUniverse(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;
});
}
/// <summary>
/// OnData event is the primary entry point for your algorithm. Each new data point will be pumped in here.
/// </summary>
/// <param name="data">Slice object keyed by symbol containing the stock data</param>
public override void OnData(Slice data)
{
if (Transactions.OrdersCount == 0)
{
MarketOrder("SPY", 100);
}
foreach (var kvp in data.Delistings)
{
_delistedSymbols.Add(kvp.Key);
}
if (Time.Date == new DateTime(2014, 04, 07))
{
Liquidate();
return;
}
if (_changes != null && _changes.AddedSecurities.All(x => data.Bars.ContainsKey(x.Symbol)))
{
foreach (var security in _changes.AddedSecurities)
{
Console.WriteLine(Time + ": Added Security: " + security.Symbol);
MarketOnOpenOrder(security.Symbol, 100);
}
foreach (var security in _changes.RemovedSecurities)
{
Console.WriteLine(Time + ": Removed Security: " + security.Symbol);
if (!_delistedSymbols.Contains(security.Symbol))
{
MarketOnOpenOrder(security.Symbol, -100);
}
}
_changes = null;
}
}
#region Overrides of QCAlgorithm
public override void OnSecuritiesChanged(SecurityChanges changes)
{
_changes = changes;
}
public override void OnOrderEvent(OrderEvent orderEvent)
{
if (orderEvent.Status == OrderStatus.Submitted)
{
Console.WriteLine(Time + ": Submitted: " + Transactions.GetOrderById(orderEvent.OrderId));
}
if (orderEvent.Status.IsFill())
{
Console.WriteLine(Time + ": Filled: " + Transactions.GetOrderById(orderEvent.OrderId));
}
}
#endregion
}
}