/* * 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 QuantConnect.Data.Market; using Python.Runtime; namespace QuantConnect.Data.Consolidators { /// /// A data consolidator that can make bigger bars from ticks over a given /// time span or a count of pieces of data. /// public class TickConsolidator : TradeBarConsolidatorBase { /// /// Creates a consolidator to produce a new 'TradeBar' representing the period /// /// The minimum span of time before emitting a consolidated bar public TickConsolidator(TimeSpan period) : base(period) { } /// /// Creates a consolidator to produce a new 'TradeBar' representing the last count pieces of data /// /// The number of pieces to accept before emitting a consolidated bar public TickConsolidator(int maxCount) : base(maxCount) { } /// /// Creates a consolidator to produce a new 'TradeBar' representing the last count pieces of data or the period, whichever comes first /// /// The number of pieces to accept before emitting a consolidated bar /// The minimum span of time before emitting a consolidated bar public TickConsolidator(int maxCount, TimeSpan period) : base(maxCount, period) { } /// /// Initializes a new instance of the class /// /// Func that defines the start time of a consolidated data public TickConsolidator(Func func) : base(func) { } /// /// Creates a consolidator to produce a new 'TradeBar' representing the last count pieces of data or the period, whichever comes first /// /// Python function object that defines the start time of a consolidated data public TickConsolidator(PyObject pyfuncobj) : base(pyfuncobj) { } /// /// Determines whether or not the specified data should be processed /// /// The data to check /// True if the consolidator should process this data, false otherwise protected override bool ShouldProcess(Tick data) { return data.TickType == TickType.Trade; } /// /// Aggregates the new 'data' into the 'workingBar'. The 'workingBar' will be /// null following the event firing /// /// The bar we're building /// The new data protected override void AggregateBar(ref TradeBar workingBar, Tick data) { if (workingBar == null) { workingBar = new TradeBar(GetRoundedBarTime(data), data.Symbol, data.Value, data.Value, data.Value, data.Value, data.Quantity, Period); } else { //Aggregate the working bar workingBar.Close = data.Value; workingBar.Volume += data.Quantity; if (data.Value < workingBar.Low) workingBar.Low = data.Value; if (data.Value > workingBar.High) workingBar.High = data.Value; } } } }