internal void OnUpdateQuotes(string securityId, int row, int rowCount, double bidPrice, double bidVolume, double askPrice, double askVolume) { QuoteChanged.SafeInvoke(securityId, row, rowCount, bidPrice.ToDecimal(), bidVolume.ToDecimal(), askPrice.ToDecimal(), askVolume.ToDecimal()); }
internal void OnUpdateQuotes(string securityId, int row, int rowCount, double bidPrice, double bidVolume, double askPrice, double askVolume) { QuoteChanged.SafeInvoke(securityId, row, rowCount, SafeCast(bidPrice), SafeCast(bidVolume), SafeCast(askPrice), SafeCast(askVolume)); }