FastQuant.OrderBookAggr.GetTickVolume C# (CSharp) Method

GetTickVolume() private method

private GetTickVolume ( IEnumerable ticks ) : int
ticks IEnumerable
return int
        private int GetTickVolume(IEnumerable<Tick> ticks) => ticks.Sum(t => t.Size);