mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
16 lines
494 B
C#
Executable File
16 lines
494 B
C#
Executable File
namespace MtApi5
|
|
{
|
|
public class Mt5Quote
|
|
{
|
|
public string Instrument { get; set; } = string.Empty;
|
|
public double Bid { get; set; }
|
|
public double Ask { get; set; }
|
|
public int ExpertHandle { get; set; }
|
|
public DateTime Time { get; set; }
|
|
public double Last { get; set; }
|
|
public ulong Volume { get; set; }
|
|
// public long TimeMsc { get; set; }
|
|
// public uint Flags { get; set; }
|
|
}
|
|
}
|