mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-01 13:07:52 +00:00
17 lines
361 B
C#
Executable File
17 lines
361 B
C#
Executable File
namespace MtApi5
|
|
{
|
|
public class Mt5Quote
|
|
{
|
|
public string Instrument { get; }
|
|
public double Bid { get; }
|
|
public double Ask { get; }
|
|
|
|
public Mt5Quote(string instrument, double bid, double ask)
|
|
{
|
|
Instrument = instrument;
|
|
Bid = bid;
|
|
Ask = ask;
|
|
}
|
|
}
|
|
}
|