mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-27 18:47:55 +00:00
21 lines
543 B
C#
21 lines
543 B
C#
using System;
|
|
|
|
namespace MtApi5
|
|
{
|
|
public class Mt5TimeBarArgs: EventArgs
|
|
{
|
|
internal Mt5TimeBarArgs(int expertHandle, string symbol, ENUM_TIMEFRAMES timeframe, MqlRates rates)
|
|
{
|
|
ExpertHandle = expertHandle;
|
|
Rates = rates;
|
|
Symbol = symbol;
|
|
Timeframe = timeframe;
|
|
}
|
|
|
|
public int ExpertHandle { get; }
|
|
public string Symbol { get; }
|
|
public ENUM_TIMEFRAMES Timeframe { get; }
|
|
public MqlRates Rates { get; }
|
|
}
|
|
}
|