Files
mtapi/MtApi5/MtProtocol/OnLastTimeBarEvent.cs

10 lines
287 B
C#
Executable File

namespace MtApi5.MtProtocol
{
internal class OnLastTimeBarEvent
{
public MqlRates? Rates { get; set; }
public string? Instrument { get; set; }
public ENUM_TIMEFRAMES Timeframe { get; set; }
public int ExpertHandle { get; set; }
}
}