2024-01-13 14:48:06 +02:00
|
|
|
namespace MtApi5
|
2014-10-31 09:05:52 +02:00
|
|
|
{
|
|
|
|
|
public class Mt5Quote
|
|
|
|
|
{
|
2024-02-24 21:33:35 +02:00
|
|
|
public string Instrument { get; set; } = string.Empty;
|
2024-01-11 22:54:56 +02:00
|
|
|
public double Bid { get; set; }
|
|
|
|
|
public double Ask { get; set; }
|
2018-03-19 15:09:02 +02:00
|
|
|
public int ExpertHandle { get; set; }
|
2018-05-08 14:53:31 +03:00
|
|
|
public DateTime Time { get; set; }
|
|
|
|
|
public double Last { get; set; }
|
|
|
|
|
public ulong Volume { get; set; }
|
2024-01-11 22:54:56 +02:00
|
|
|
// public long TimeMsc { get; set; }
|
|
|
|
|
// public uint Flags { get; set; }
|
2014-10-31 09:05:52 +02:00
|
|
|
}
|
|
|
|
|
}
|