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
+7
View File
@@ -0,0 +1,7 @@
namespace MtApi.Events
{
internal class OnLockTicksEvent
{
public string Instrument { get; set; }
}
}