2018-06-05 19:19:35 +03:00
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace MtApi5
|
|
|
|
|
{
|
|
|
|
|
public class Mt5TimeBarArgs: EventArgs
|
|
|
|
|
{
|
2026-04-06 21:55:59 +03:00
|
|
|
internal Mt5TimeBarArgs(int expertHandle, string symbol, ENUM_TIMEFRAMES timeframe, MqlRates rates)
|
2018-06-05 19:19:35 +03:00
|
|
|
{
|
|
|
|
|
ExpertHandle = expertHandle;
|
|
|
|
|
Rates = rates;
|
|
|
|
|
Symbol = symbol;
|
2026-04-06 21:55:59 +03:00
|
|
|
Timeframe = timeframe;
|
2018-06-05 19:19:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int ExpertHandle { get; }
|
|
|
|
|
public string Symbol { get; }
|
2026-04-06 21:55:59 +03:00
|
|
|
public ENUM_TIMEFRAMES Timeframe { get; }
|
2018-06-05 19:19:35 +03:00
|
|
|
public MqlRates Rates { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|