Files
2026-07-13 13:02:50 +08:00

112 lines
4.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 QuantConnect.Data.Market;
using Python.Runtime;
namespace QuantConnect.Data.Consolidators
{
/// <summary>
/// Consolidates ticks into quote bars. This consolidator ignores trade ticks
/// </summary>
public class TickQuoteBarConsolidator : PeriodCountConsolidatorBase<Tick, QuoteBar>
{
/// <summary>
/// Initializes a new instance of the <see cref="TickQuoteBarConsolidator"/> class
/// </summary>
/// <param name="period">The minimum span of time before emitting a consolidated bar</param>
/// <param name="startTime">Optionally the bar start time anchor to use</param>
public TickQuoteBarConsolidator(TimeSpan period, TimeSpan? startTime = null)
: base(period, startTime)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="TickQuoteBarConsolidator"/> class
/// </summary>
/// <param name="maxCount">The number of pieces to accept before emitting a consolidated bar</param>
public TickQuoteBarConsolidator(int maxCount)
: base(maxCount)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="TickQuoteBarConsolidator"/> class
/// </summary>
/// <param name="maxCount">The number of pieces to accept before emitting a consolidated bar</param>
/// <param name="period">The minimum span of time before emitting a consolidated bar</param>
public TickQuoteBarConsolidator(int maxCount, TimeSpan period)
: base(maxCount, period)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="TickQuoteBarConsolidator"/> class
/// </summary>
/// <param name="func">Func that defines the start time of a consolidated data</param>
public TickQuoteBarConsolidator(Func<DateTime, CalendarInfo> func)
: base(func)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="TickQuoteBarConsolidator"/> class
/// </summary>
/// <param name="pyfuncobj">Python function object that defines the start time of a consolidated data</param>
public TickQuoteBarConsolidator(PyObject pyfuncobj)
: base(pyfuncobj)
{
}
/// <summary>
/// Determines whether or not the specified data should be processed
/// </summary>
/// <param name="data">The data to check</param>
/// <returns>True if the consolidator should process this data, false otherwise</returns>
protected override bool ShouldProcess(Tick data)
{
return data.TickType == TickType.Quote;
}
/// <summary>
/// Aggregates the new 'data' into the 'workingBar'. The 'workingBar' will be
/// null following the event firing
/// </summary>
/// <param name="workingBar">The bar we're building, null if the event was just fired and we're starting a new consolidated bar</param>
/// <param name="data">The new data</param>
protected override void AggregateBar(ref QuoteBar workingBar, Tick data)
{
if (workingBar == null)
{
workingBar = new QuoteBar(GetRoundedBarTime(data), data.Symbol, null, decimal.Zero, null, decimal.Zero, Period);
// open ask and bid should match previous close ask and bid
if (Consolidated != null)
{
// note that we will only fill forward previous close ask and bid when a new data point comes in and we generate a new working bar which is not a fill forward bar
var previous = Consolidated as QuoteBar;
workingBar.Update(decimal.Zero, previous.Bid?.Close ?? decimal.Zero, previous.Ask?.Close ?? decimal.Zero, decimal.Zero, previous.LastBidSize, previous.LastAskSize);
}
}
// update the bid and ask
workingBar.Update(decimal.Zero, data.BidPrice, data.AskPrice, decimal.Zero, data.BidSize, data.AskSize);
if (!Period.HasValue) workingBar.EndTime = GetRoundedBarTime(data.EndTime);
}
}
}