mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
23 lines
488 B
C#
Executable File
23 lines
488 B
C#
Executable File
namespace MtApi
|
|
{
|
|
public class MtQuote
|
|
{
|
|
public string Instrument { get; set; } = string.Empty;
|
|
public double Bid { get; set; }
|
|
public double Ask { get; set; }
|
|
public int ExpertHandle { get; set; }
|
|
|
|
public MtQuote(string instrument, double bid, double ask)
|
|
{
|
|
Instrument = instrument;
|
|
Bid = bid;
|
|
Ask = ask;
|
|
}
|
|
|
|
public MtQuote()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|