MtApi5: small update in requesting quote

This commit is contained in:
Viacheslav Demydiuk
2024-01-13 14:48:06 +02:00
parent 4f9dc57c25
commit 66d981ca9c
3 changed files with 23 additions and 28 deletions
+1 -20
View File
@@ -1,6 +1,4 @@
using System;
namespace MtApi5
namespace MtApi5
{
public class Mt5Quote
{
@@ -13,22 +11,5 @@ namespace MtApi5
public ulong Volume { get; set; }
// public long TimeMsc { get; set; }
// public uint Flags { get; set; }
internal Mt5Quote()
{
}
internal Mt5Quote(string instrument, double bid, double ask)
{
Instrument = instrument;
Bid = bid;
Ask = ask;
}
//internal Mt5Quote(MtQuote quote)
// :this(quote.Instrument, quote.Bid, quote.Ask)
//{
// ExpertHandle = quote.ExpertHandle;
//}
}
}