In the ClusterSearch.Models.cs class, the following line
|
if (!TryGetValue(price, out var iLevel)) |
Should 'price' be 'iPrice'?
for (var iPrice = price; iPrice <= price + (priceRowsMerge - 1) * tickSize; iPrice += tickSize)
{
if (!TryGetValue(iPrice, out var iLevel))
continue;
sum += iLevel.Volume;
}