mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 02:57:56 +00:00
17 lines
441 B
C#
17 lines
441 B
C#
namespace MtApi.Requests
|
|
{
|
|
public class OrderCloseRequest: RequestBase
|
|
{
|
|
public int Ticket { get; set; }
|
|
|
|
public double? Lots { get; set; }
|
|
public double? Price { get; set; }
|
|
public int? Slippage { get; set; }
|
|
public int? ArrowColor { get; set; }
|
|
|
|
public override RequestType RequestType
|
|
{
|
|
get { return RequestType.OrderClose; }
|
|
}
|
|
}
|
|
} |