FastQuant.OrderBook.GetVolume C# (CSharp) Method

GetVolume() private method

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