mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-17 04:38:10 +00:00
Issue #226: Implemented two modes of lock ticks: LOCK_EVERY_TICK and LOCK_EVERY_CANDLE. Added event OnLockTicks
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user