Issue #226: Implemented two modes of lock ticks: LOCK_EVERY_TICK and LOCK_EVERY_CANDLE. Added event OnLockTicks

This commit is contained in:
Viacheslav Demydiuk
2020-11-29 19:30:21 +02:00
parent acd8514c38
commit 3a05fc3353
11 changed files with 57 additions and 11 deletions
+16
View File
@@ -0,0 +1,16 @@
using System;
namespace MtApi
{
public class MtLockTicksEventArgs : EventArgs
{
internal MtLockTicksEventArgs(int expertHandle, string symbol)
{
ExpertHandle = expertHandle;
Symbol = symbol;
}
public int ExpertHandle { get; }
public string Symbol { get; }
}
}