mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-20 14:18:22 +00:00
Added stub for logging in MtApi5. Implemented function SendCommand. Get quotes after connection
This commit is contained in:
+9
-5
@@ -4,15 +4,19 @@ namespace MtApi5
|
||||
{
|
||||
public class Mt5Quote
|
||||
{
|
||||
public string Instrument { get; }
|
||||
public double Bid { get; }
|
||||
public double Ask { get; }
|
||||
public string? Instrument { get; set; }
|
||||
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; }
|
||||
// public long TimeMsc { get; set; }
|
||||
// public uint Flags { get; set; }
|
||||
|
||||
internal Mt5Quote()
|
||||
{
|
||||
}
|
||||
|
||||
internal Mt5Quote(string instrument, double bid, double ask)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user