Files

16 lines
494 B
C#
Raw Permalink Normal View History

2024-01-13 14:48:06 +02:00
namespace MtApi5
2014-10-31 09:05:52 +02:00
{
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; }
2014-10-31 09:05:52 +02:00
}
}