2018-02-26 18:21:44 +02:00
|
|
|
namespace MtApi5
|
|
|
|
|
{
|
|
|
|
|
public class MqlParam
|
|
|
|
|
{
|
|
|
|
|
public ENUM_DATATYPE DataType { get; set; }
|
2025-01-09 17:06:36 +02:00
|
|
|
public long IntegerValue { get; set; } = 0;
|
|
|
|
|
public double DoubleValue { get; set; } = 0.0;
|
|
|
|
|
public string StringValue { get; set; } = String.Empty;
|
2018-02-26 18:21:44 +02:00
|
|
|
}
|
|
|
|
|
}
|