2018-03-02 11:43:03 +02:00
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace MtApi5
|
|
|
|
|
{
|
|
|
|
|
public class Mt5BookEventArgs : EventArgs
|
|
|
|
|
{
|
|
|
|
|
public int ExpertHandle { get; set; }
|
2024-01-07 23:19:19 +02:00
|
|
|
public string? Symbol { get; set; } //Symbol of OnBookEvent event.
|
2018-03-02 11:43:03 +02:00
|
|
|
}
|
|
|
|
|
}
|