Started version 1.0.25. Added OrderModifyRequest. Changed function OrderModify to use request pattern.

This commit is contained in:
DW
2016-05-06 10:30:51 +03:00
parent 4511a64a39
commit 1ef3765d68
14 changed files with 214 additions and 87 deletions
+6
View File
@@ -17,6 +17,7 @@ namespace MtApi
public double Commission { get; set; }
public int MagicNumber { get; set; }
public double Swap { get; set; }
public int MtExpiration { get; set; }
public DateTime OpenTime
{
@@ -27,5 +28,10 @@ namespace MtApi
{
get { return MtApiTimeConverter.ConvertFromMtTime(MtCloseTime); }
}
public DateTime Expiration
{
get { return MtApiTimeConverter.ConvertFromMtTime(MtExpiration); }
}
}
}