Update solution to support Visual Studio 2013. Fix problems with async quote events

This commit is contained in:
vdemydiuk
2016-04-09 17:29:15 +03:00
parent c256e4f80f
commit 9b40712c9c
13 changed files with 172 additions and 25 deletions
+1 -4
View File
@@ -1314,10 +1314,7 @@ namespace MtApi
{
if (quote != null)
{
if (QuoteUpdated != null)
{
QuoteUpdated(this, quote.Instrument, quote.Bid, quote.Ask);
}
QuoteUpdated.FireEvent(this, quote.Instrument, quote.Bid, quote.Ask);
}
}