Issue #32: Added c# implementations of most object functions in MtApi client

This commit is contained in:
DW
2016-12-30 17:16:48 +02:00
parent a8832b79ba
commit 18ddf3df1c
11 changed files with 479 additions and 30 deletions
+5 -2
View File
@@ -1426,6 +1426,9 @@ namespace MtApi5
}
}
///<summary>
///Handle of expert used to execute commands
///</summary>
public int ExecutorHandle
{
get
@@ -1646,12 +1649,12 @@ namespace MtApi5
private void _client_QuoteRemoved(MtQuote quote)
{
QuoteRemoved.FireEvent(this, new Mt5QuoteEventArgs(quote.Parse()));
QuoteRemoved?.Invoke(this, new Mt5QuoteEventArgs(quote.Parse()));
}
private void _client_QuoteAdded(MtQuote quote)
{
QuoteAdded.FireEvent(this, new Mt5QuoteEventArgs(quote.Parse()));
QuoteAdded?.Invoke(this, new Mt5QuoteEventArgs(quote.Parse()));
}
private void OnConnected()