Untitled
unknown
csharp
3 years ago
398 B
3
Indexable
public void OnPriceLevelSideChange(double price, bool isBidSide, IEnumerable<PriceLevelSideOrder> orders)
{
LockedScopeProvider(async (dbContext, userContextService, matchingEngineHub) =>
{
await matchingEngineHub.Clients.All.SendAsync("onPriceLevelSideChange", price, isBidSide, orders, orders.Sum(o=>o.Quantity));
Console.Write($"OnChangePriceLevelSide");
});
}Editor is loading...