653 lines
28 KiB
C#
653 lines
28 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.Concurrent;
|
|
using System.Collections.Generic;
|
|
using NodaTime;
|
|
using QuantConnect.Data;
|
|
using QuantConnect.Data.Market;
|
|
using QuantConnect.Data.UniverseSelection;
|
|
using QuantConnect.Interfaces;
|
|
using QuantConnect.Logging;
|
|
|
|
namespace QuantConnect.Lean.Engine.DataFeeds
|
|
{
|
|
/// <summary>
|
|
/// Instance base class that will provide methods for creating new <see cref="TimeSlice"/>
|
|
/// </summary>
|
|
public class TimeSliceFactory
|
|
{
|
|
private readonly DateTimeZone _timeZone;
|
|
private static readonly ConcurrentDictionary<Symbol, Symbol> _canonicalSymbols = new ConcurrentDictionary<Symbol,Symbol>();
|
|
|
|
// performance: these collections are not always used so keep a reference to an empty
|
|
// instance to use and avoid unnecessary constructors and allocations
|
|
private static List<UpdateData<ISecurityPrice>> _emptyCustom = new List<UpdateData<ISecurityPrice>>(0);
|
|
private static TradeBars _emptyTradeBars = new TradeBars();
|
|
private static QuoteBars _emptyQuoteBars = new QuoteBars();
|
|
private static Ticks _emptyTicks = new Ticks();
|
|
private static Splits _emptySplits = new Splits();
|
|
private static Dividends _emptyDividends = new Dividends();
|
|
private static Delistings _emptyDelistings = new Delistings();
|
|
private static OptionChains _emptyOptionChains = new OptionChains();
|
|
private static FuturesChains _emptyFuturesChains = new FuturesChains();
|
|
private static SymbolChangedEvents _emptySymbolChangedEvents = new SymbolChangedEvents();
|
|
|
|
/// <summary>
|
|
/// Creates a new instance
|
|
/// </summary>
|
|
/// <param name="timeZone">The time zone required for computing algorithm and slice time</param>
|
|
public TimeSliceFactory(DateTimeZone timeZone)
|
|
{
|
|
_timeZone = timeZone;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new empty <see cref="TimeSlice"/> to be used as a time pulse
|
|
/// </summary>
|
|
/// <remarks>The objective of this method is to standardize the time pulse creation</remarks>
|
|
/// <param name="utcDateTime">The UTC frontier date time</param>
|
|
/// <returns>A new <see cref="TimeSlice"/> time pulse</returns>
|
|
public TimeSlice CreateTimePulse(DateTime utcDateTime)
|
|
{
|
|
// setting all data collections to null, this time slice shouldn't be used
|
|
// for its data, we want to see fireworks it someone tries
|
|
return new TimeSlice(utcDateTime,
|
|
0,
|
|
null,
|
|
null,
|
|
null,
|
|
null,
|
|
null,
|
|
SecurityChanges.None,
|
|
null,
|
|
isTimePulse:true);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new <see cref="TimeSlice"/> for the specified time using the specified data
|
|
/// </summary>
|
|
/// <param name="utcDateTime">The UTC frontier date time</param>
|
|
/// <param name="data">The data in this <see cref="TimeSlice"/></param>
|
|
/// <param name="changes">The new changes that are seen in this time slice as a result of universe selection</param>
|
|
/// <param name="universeData"></param>
|
|
/// <returns>A new <see cref="TimeSlice"/> containing the specified data</returns>
|
|
public TimeSlice Create(DateTime utcDateTime,
|
|
List<DataFeedPacket> data,
|
|
SecurityChanges changes,
|
|
Dictionary<Universe, BaseDataCollection> universeData)
|
|
{
|
|
int count = 0;
|
|
var security = new List<UpdateData<ISecurityPrice>>(data.Count);
|
|
List<UpdateData<ISecurityPrice>> custom = null;
|
|
var consolidator = new List<UpdateData<SubscriptionDataConfig>>(data.Count);
|
|
var allDataForAlgorithm = new List<BaseData>(data.Count);
|
|
var optionUnderlyingUpdates = new Dictionary<Symbol, BaseData>();
|
|
|
|
Split split;
|
|
Dividend dividend;
|
|
Delisting delisting;
|
|
SymbolChangedEvent symbolChange;
|
|
|
|
// we need to be able to reference the slice being created in order to define the
|
|
// evaluation of option price models, so we define a 'future' that can be referenced
|
|
// in the option price model evaluation delegates for each contract
|
|
Slice slice = null;
|
|
var sliceFuture = new Lazy<Slice>(() => slice);
|
|
|
|
var algorithmTime = utcDateTime.ConvertFromUtc(_timeZone);
|
|
TradeBars tradeBars = null;
|
|
QuoteBars quoteBars = null;
|
|
Ticks ticks = null;
|
|
Splits splits = null;
|
|
Dividends dividends = null;
|
|
Delistings delistings = null;
|
|
OptionChains optionChains = null;
|
|
FuturesChains futuresChains = null;
|
|
SymbolChangedEvents symbolChanges = null;
|
|
|
|
if (universeData.Count > 0)
|
|
{
|
|
// count universe data
|
|
foreach (var kvp in universeData)
|
|
{
|
|
count += kvp.Value.Data.Count;
|
|
}
|
|
}
|
|
|
|
// ensure we read equity data before option data, so we can set the current underlying price
|
|
foreach (var packet in data)
|
|
{
|
|
// filter out packets for removed subscriptions
|
|
if (packet.IsSubscriptionRemoved)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
var list = packet.Data;
|
|
var symbol = packet.Configuration.Symbol;
|
|
|
|
if (list.Count == 0) continue;
|
|
|
|
// keep count of all data points
|
|
if (list.Count == 1 && list[0] is BaseDataCollection)
|
|
{
|
|
var baseDataCollectionCount = ((BaseDataCollection)list[0]).Data.Count;
|
|
if (baseDataCollectionCount == 0)
|
|
{
|
|
continue;
|
|
}
|
|
count += baseDataCollectionCount;
|
|
}
|
|
else
|
|
{
|
|
count += list.Count;
|
|
}
|
|
|
|
if (!packet.Configuration.IsInternalFeed && packet.Configuration.IsCustomData)
|
|
{
|
|
if (custom == null)
|
|
{
|
|
custom = new List<UpdateData<ISecurityPrice>>(1);
|
|
}
|
|
// This is all the custom data
|
|
custom.Add(new UpdateData<ISecurityPrice>(packet.Security, packet.Configuration.Type, list, packet.Configuration.IsInternalFeed));
|
|
}
|
|
|
|
var securityUpdate = new List<BaseData>(list.Count);
|
|
var consolidatorUpdate = new List<BaseData>(list.Count);
|
|
var containsFillForwardData = false;
|
|
for (var i = 0; i < list.Count; i++)
|
|
{
|
|
var baseData = list[i];
|
|
if (!packet.Configuration.IsInternalFeed)
|
|
{
|
|
// this is all the data that goes into the algorithm
|
|
allDataForAlgorithm.Add(baseData);
|
|
}
|
|
|
|
containsFillForwardData |= baseData.IsFillForward;
|
|
|
|
// don't add internal feed data to ticks/bars objects
|
|
if (baseData.DataType != MarketDataType.Auxiliary)
|
|
{
|
|
var tick = baseData as Tick;
|
|
|
|
if (!packet.Configuration.IsInternalFeed)
|
|
{
|
|
// populate data dictionaries
|
|
switch (baseData.DataType)
|
|
{
|
|
case MarketDataType.Tick:
|
|
if (ticks == null)
|
|
{
|
|
ticks = new Ticks(algorithmTime);
|
|
}
|
|
ticks.Add(baseData.Symbol, (Tick)baseData);
|
|
break;
|
|
|
|
case MarketDataType.TradeBar:
|
|
if (tradeBars == null)
|
|
{
|
|
tradeBars = new TradeBars(algorithmTime);
|
|
}
|
|
|
|
var newTradeBar = (TradeBar)baseData;
|
|
TradeBar existingTradeBar;
|
|
// if we have an existing bar keep the highest resolution one
|
|
// e.g Hour and Minute resolution subscriptions for the same symbol
|
|
// see CustomUniverseWithBenchmarkRegressionAlgorithm
|
|
if (!tradeBars.TryGetValue(baseData.Symbol, out existingTradeBar)
|
|
|| existingTradeBar.Period > newTradeBar.Period)
|
|
{
|
|
tradeBars[baseData.Symbol] = newTradeBar;
|
|
}
|
|
break;
|
|
|
|
case MarketDataType.QuoteBar:
|
|
if (quoteBars == null)
|
|
{
|
|
quoteBars = new QuoteBars(algorithmTime);
|
|
}
|
|
|
|
var newQuoteBar = (QuoteBar)baseData;
|
|
QuoteBar existingQuoteBar;
|
|
// if we have an existing bar keep the highest resolution one
|
|
// e.g Hour and Minute resolution subscriptions for the same symbol
|
|
// see CustomUniverseWithBenchmarkRegressionAlgorithm
|
|
if (!quoteBars.TryGetValue(baseData.Symbol, out existingQuoteBar)
|
|
|| existingQuoteBar.Period > newQuoteBar.Period)
|
|
{
|
|
quoteBars[baseData.Symbol] = newQuoteBar;
|
|
}
|
|
break;
|
|
|
|
case MarketDataType.OptionChain:
|
|
if (optionChains == null)
|
|
{
|
|
optionChains = new OptionChains(algorithmTime);
|
|
}
|
|
optionChains[baseData.Symbol] = (OptionChain)baseData;
|
|
break;
|
|
|
|
case MarketDataType.FuturesChain:
|
|
if (futuresChains == null)
|
|
{
|
|
futuresChains = new FuturesChains(algorithmTime);
|
|
}
|
|
futuresChains[baseData.Symbol] = (FuturesChain)baseData;
|
|
break;
|
|
}
|
|
|
|
// special handling of options data to build the option chain
|
|
if (symbol.SecurityType == SecurityType.Option || symbol.SecurityType == SecurityType.FutureOption)
|
|
{
|
|
if (optionChains == null)
|
|
{
|
|
optionChains = new OptionChains(algorithmTime);
|
|
}
|
|
|
|
if (baseData.DataType == MarketDataType.OptionChain)
|
|
{
|
|
optionChains[baseData.Symbol] = (OptionChain)baseData;
|
|
}
|
|
else if (!HandleOptionData(algorithmTime, baseData, optionChains, packet.Security, sliceFuture, optionUnderlyingUpdates))
|
|
{
|
|
continue;
|
|
}
|
|
}
|
|
|
|
// special handling of futures data to build the futures chain
|
|
if (symbol.SecurityType == SecurityType.Future)
|
|
{
|
|
if (futuresChains == null)
|
|
{
|
|
futuresChains = new FuturesChains(algorithmTime);
|
|
}
|
|
if (baseData.DataType == MarketDataType.FuturesChain)
|
|
{
|
|
futuresChains[baseData.Symbol] = (FuturesChain)baseData;
|
|
}
|
|
else if (!HandleFuturesData(algorithmTime, baseData, futuresChains, packet.Security))
|
|
{
|
|
continue;
|
|
}
|
|
}
|
|
|
|
// this is data used to update consolidators
|
|
// do not add it if it is a Suspicious tick
|
|
if (tick == null || !tick.Suspicious)
|
|
{
|
|
consolidatorUpdate.Add(baseData);
|
|
}
|
|
}
|
|
|
|
// this is the data used set market prices
|
|
// do not add it if it is a Suspicious tick
|
|
if (tick != null && tick.Suspicious) continue;
|
|
|
|
securityUpdate.Add(baseData);
|
|
|
|
// option underlying security update
|
|
if (!packet.Configuration.IsInternalFeed)
|
|
{
|
|
optionUnderlyingUpdates[symbol] = baseData;
|
|
}
|
|
}
|
|
else if (!packet.Configuration.IsInternalFeed)
|
|
{
|
|
// include checks for various aux types so we don't have to construct the dictionaries in Slice
|
|
if ((delisting = baseData as Delisting) != null)
|
|
{
|
|
if (delistings == null)
|
|
{
|
|
delistings = new Delistings(algorithmTime);
|
|
}
|
|
delistings[symbol] = delisting;
|
|
}
|
|
else if ((dividend = baseData as Dividend) != null)
|
|
{
|
|
if (dividends == null)
|
|
{
|
|
dividends = new Dividends(algorithmTime);
|
|
}
|
|
dividends[symbol] = dividend;
|
|
}
|
|
else if ((split = baseData as Split) != null)
|
|
{
|
|
if (splits == null)
|
|
{
|
|
splits = new Splits(algorithmTime);
|
|
}
|
|
splits[symbol] = split;
|
|
}
|
|
else if ((symbolChange = baseData as SymbolChangedEvent) != null)
|
|
{
|
|
if (symbolChanges == null)
|
|
{
|
|
symbolChanges = new SymbolChangedEvents(algorithmTime);
|
|
}
|
|
// symbol changes is keyed by the requested symbol
|
|
symbolChanges[packet.Configuration.Symbol] = symbolChange;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (securityUpdate.Count > 0)
|
|
{
|
|
security.Add(new UpdateData<ISecurityPrice>(packet.Security, packet.Configuration.Type, securityUpdate, packet.Configuration.IsInternalFeed, containsFillForwardData));
|
|
}
|
|
if (consolidatorUpdate.Count > 0)
|
|
{
|
|
consolidator.Add(new UpdateData<SubscriptionDataConfig>(packet.Configuration, packet.Configuration.Type, consolidatorUpdate, packet.Configuration.IsInternalFeed, containsFillForwardData));
|
|
}
|
|
}
|
|
|
|
slice = new Slice(algorithmTime, allDataForAlgorithm, tradeBars ?? _emptyTradeBars, quoteBars ?? _emptyQuoteBars, ticks ?? _emptyTicks, optionChains ?? _emptyOptionChains, futuresChains ?? _emptyFuturesChains, splits ?? _emptySplits, dividends ?? _emptyDividends, delistings ?? _emptyDelistings, symbolChanges ?? _emptySymbolChangedEvents, allDataForAlgorithm.Count > 0);
|
|
|
|
return new TimeSlice(utcDateTime, count, slice, data, security, consolidator, custom ?? _emptyCustom, changes, universeData);
|
|
}
|
|
|
|
private bool HandleOptionData(DateTime algorithmTime, BaseData baseData, OptionChains optionChains, ISecurityPrice security, Lazy<Slice> sliceFuture, IReadOnlyDictionary<Symbol, BaseData> optionUnderlyingUpdates)
|
|
{
|
|
var symbol = baseData.Symbol;
|
|
|
|
OptionChain chain;
|
|
Symbol canonical;
|
|
|
|
if (!_canonicalSymbols.TryGetValue(symbol, out canonical))
|
|
{
|
|
canonical = Symbol.CreateOption(symbol.Underlying, symbol.ID.Market, default(OptionStyle), default(OptionRight), 0, SecurityIdentifier.DefaultDate);
|
|
_canonicalSymbols.TryAdd(symbol, canonical);
|
|
}
|
|
|
|
if (!optionChains.TryGetValue(canonical, out chain))
|
|
{
|
|
chain = new OptionChain(canonical, algorithmTime);
|
|
optionChains[canonical] = chain;
|
|
}
|
|
|
|
// set the underlying current data point in the option chain
|
|
var option = security as IOptionPrice;
|
|
if (option != null)
|
|
{
|
|
if (option.Underlying == null)
|
|
{
|
|
Log.Error($"TimeSlice.HandleOptionData(): {algorithmTime}: Option underlying is null");
|
|
return false;
|
|
}
|
|
|
|
BaseData underlyingData;
|
|
if (!optionUnderlyingUpdates.TryGetValue(option.Underlying.Symbol, out underlyingData))
|
|
{
|
|
underlyingData = option.Underlying.GetLastData();
|
|
}
|
|
|
|
if (underlyingData == null)
|
|
{
|
|
Log.Error($"TimeSlice.HandleOptionData(): {algorithmTime}: Option underlying GetLastData returned null");
|
|
return false;
|
|
}
|
|
chain.Underlying = underlyingData;
|
|
}
|
|
|
|
var universeData = baseData as OptionChainUniverseDataCollection;
|
|
if (universeData != null)
|
|
{
|
|
if (universeData.Underlying != null)
|
|
{
|
|
foreach (var addedContract in chain.Contracts)
|
|
{
|
|
addedContract.Value.UnderlyingLastPrice = chain.Underlying.Price;
|
|
}
|
|
}
|
|
foreach (var contractSymbol in universeData.FilteredContracts)
|
|
{
|
|
chain.FilteredContracts.Add(contractSymbol);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
OptionContract contract;
|
|
if (!chain.Contracts.TryGetValue(baseData.Symbol, out contract))
|
|
{
|
|
var underlyingSymbol = baseData.Symbol.Underlying;
|
|
contract = new OptionContract(baseData.Symbol, underlyingSymbol)
|
|
{
|
|
Time = baseData.EndTime,
|
|
LastPrice = security.Close,
|
|
Volume = (long)security.Volume,
|
|
BidPrice = security.BidPrice,
|
|
BidSize = (long)security.BidSize,
|
|
AskPrice = security.AskPrice,
|
|
AskSize = (long)security.AskSize,
|
|
OpenInterest = security.OpenInterest,
|
|
UnderlyingLastPrice = chain.Underlying.Price
|
|
};
|
|
|
|
chain.Contracts[baseData.Symbol] = contract;
|
|
|
|
if (option != null)
|
|
{
|
|
contract.SetOptionPriceModel(() => option.EvaluatePriceModel(sliceFuture.Value, contract));
|
|
}
|
|
}
|
|
|
|
// populate ticks and tradebars dictionaries with no aux data
|
|
switch (baseData.DataType)
|
|
{
|
|
case MarketDataType.Tick:
|
|
var tick = (Tick)baseData;
|
|
chain.Ticks.Add(tick.Symbol, tick);
|
|
UpdateContract(contract, tick);
|
|
break;
|
|
|
|
case MarketDataType.TradeBar:
|
|
var tradeBar = (TradeBar)baseData;
|
|
chain.TradeBars[symbol] = tradeBar;
|
|
UpdateContract(contract, tradeBar);
|
|
break;
|
|
|
|
case MarketDataType.QuoteBar:
|
|
var quote = (QuoteBar)baseData;
|
|
chain.QuoteBars[symbol] = quote;
|
|
UpdateContract(contract, quote);
|
|
break;
|
|
|
|
case MarketDataType.Base:
|
|
chain.AddAuxData(baseData);
|
|
break;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
|
|
private bool HandleFuturesData(DateTime algorithmTime, BaseData baseData, FuturesChains futuresChains, ISecurityPrice security)
|
|
{
|
|
var symbol = baseData.Symbol;
|
|
|
|
FuturesChain chain;
|
|
Symbol canonical;
|
|
|
|
if (!_canonicalSymbols.TryGetValue(symbol, out canonical))
|
|
{
|
|
canonical = Symbol.Create(symbol.ID.Symbol, SecurityType.Future, symbol.ID.Market);
|
|
_canonicalSymbols.TryAdd(symbol, canonical);
|
|
}
|
|
|
|
if (!futuresChains.TryGetValue(canonical, out chain))
|
|
{
|
|
chain = new FuturesChain(canonical, algorithmTime);
|
|
futuresChains[canonical] = chain;
|
|
}
|
|
|
|
var universeData = baseData as FuturesChainUniverseDataCollection;
|
|
if (universeData != null)
|
|
{
|
|
foreach (var contractSymbol in universeData.FilteredContracts)
|
|
{
|
|
chain.FilteredContracts.Add(contractSymbol);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
FuturesContract contract;
|
|
if (!chain.Contracts.TryGetValue(baseData.Symbol, out contract))
|
|
{
|
|
var underlyingSymbol = baseData.Symbol.Underlying;
|
|
contract = new FuturesContract(baseData.Symbol, underlyingSymbol)
|
|
{
|
|
Time = baseData.EndTime,
|
|
LastPrice = security.Close,
|
|
Volume = (long)security.Volume,
|
|
BidPrice = security.BidPrice,
|
|
BidSize = (long)security.BidSize,
|
|
AskPrice = security.AskPrice,
|
|
AskSize = (long)security.AskSize,
|
|
OpenInterest = security.OpenInterest
|
|
};
|
|
chain.Contracts[baseData.Symbol] = contract;
|
|
}
|
|
|
|
// populate ticks and tradebars dictionaries with no aux data
|
|
switch (baseData.DataType)
|
|
{
|
|
case MarketDataType.Tick:
|
|
var tick = (Tick)baseData;
|
|
chain.Ticks.Add(tick.Symbol, tick);
|
|
UpdateContract(contract, tick);
|
|
break;
|
|
|
|
case MarketDataType.TradeBar:
|
|
var tradeBar = (TradeBar)baseData;
|
|
chain.TradeBars[symbol] = tradeBar;
|
|
UpdateContract(contract, tradeBar);
|
|
break;
|
|
|
|
case MarketDataType.QuoteBar:
|
|
var quote = (QuoteBar)baseData;
|
|
chain.QuoteBars[symbol] = quote;
|
|
UpdateContract(contract, quote);
|
|
break;
|
|
|
|
case MarketDataType.Base:
|
|
chain.AddAuxData(baseData);
|
|
break;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
private static void UpdateContract(OptionContract contract, QuoteBar quote)
|
|
{
|
|
if (quote.Ask != null && quote.Ask.Close != 0m)
|
|
{
|
|
contract.AskPrice = quote.Ask.Close;
|
|
contract.AskSize = (long)quote.LastAskSize;
|
|
}
|
|
if (quote.Bid != null && quote.Bid.Close != 0m)
|
|
{
|
|
contract.BidPrice = quote.Bid.Close;
|
|
contract.BidSize = (long)quote.LastBidSize;
|
|
}
|
|
}
|
|
|
|
private static void UpdateContract(OptionContract contract, Tick tick)
|
|
{
|
|
if (tick.TickType == TickType.Trade)
|
|
{
|
|
contract.LastPrice = tick.Price;
|
|
}
|
|
else if (tick.TickType == TickType.Quote)
|
|
{
|
|
if (tick.AskPrice != 0m)
|
|
{
|
|
contract.AskPrice = tick.AskPrice;
|
|
contract.AskSize = (long)tick.AskSize;
|
|
}
|
|
if (tick.BidPrice != 0m)
|
|
{
|
|
contract.BidPrice = tick.BidPrice;
|
|
contract.BidSize = (long)tick.BidSize;
|
|
}
|
|
}
|
|
else if (tick.TickType == TickType.OpenInterest)
|
|
{
|
|
if (tick.Value != 0m)
|
|
{
|
|
contract.OpenInterest = tick.Value;
|
|
}
|
|
}
|
|
}
|
|
|
|
private static void UpdateContract(OptionContract contract, TradeBar tradeBar)
|
|
{
|
|
if (tradeBar.Close == 0m) return;
|
|
contract.LastPrice = tradeBar.Close;
|
|
contract.Volume = (long)tradeBar.Volume;
|
|
}
|
|
|
|
private static void UpdateContract(FuturesContract contract, QuoteBar quote)
|
|
{
|
|
if (quote.Ask != null && quote.Ask.Close != 0m)
|
|
{
|
|
contract.AskPrice = quote.Ask.Close;
|
|
contract.AskSize = (long)quote.LastAskSize;
|
|
}
|
|
if (quote.Bid != null && quote.Bid.Close != 0m)
|
|
{
|
|
contract.BidPrice = quote.Bid.Close;
|
|
contract.BidSize = (long)quote.LastBidSize;
|
|
}
|
|
}
|
|
|
|
private static void UpdateContract(FuturesContract contract, Tick tick)
|
|
{
|
|
if (tick.TickType == TickType.Trade)
|
|
{
|
|
contract.LastPrice = tick.Price;
|
|
}
|
|
else if (tick.TickType == TickType.Quote)
|
|
{
|
|
if (tick.AskPrice != 0m)
|
|
{
|
|
contract.AskPrice = tick.AskPrice;
|
|
contract.AskSize = (long)tick.AskSize;
|
|
}
|
|
if (tick.BidPrice != 0m)
|
|
{
|
|
contract.BidPrice = tick.BidPrice;
|
|
contract.BidSize = (long)tick.BidSize;
|
|
}
|
|
}
|
|
else if (tick.TickType == TickType.OpenInterest)
|
|
{
|
|
if (tick.Value != 0m)
|
|
{
|
|
contract.OpenInterest = tick.Value;
|
|
}
|
|
}
|
|
}
|
|
|
|
private static void UpdateContract(FuturesContract contract, TradeBar tradeBar)
|
|
{
|
|
if (tradeBar.Close == 0m) return;
|
|
contract.LastPrice = tradeBar.Close;
|
|
contract.Volume = (long)tradeBar.Volume;
|
|
}
|
|
}
|
|
}
|