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
+9
View File
@@ -0,0 +1,9 @@
namespace MtApi.Events
{
public enum MtEventTypes
{
LastTimeBar = 1,
ChartEvent = 2,
OnLockTicks = 3
}
}