mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-15 11:48:09 +00:00
Merge pull request #62 from Tr4Dr/master
Fixed the type of Deviation property in MqlTradeRequest (MT5)
This commit is contained in:
@@ -13,7 +13,7 @@ namespace MtApi5
|
|||||||
public double Stoplimit { get; set; } // StopLimit level of the order
|
public double Stoplimit { get; set; } // StopLimit level of the order
|
||||||
public double Sl { get; set; } // Stop Loss level of the order
|
public double Sl { get; set; } // Stop Loss level of the order
|
||||||
public double Tp { get; set; } // Take Profit level of the order
|
public double Tp { get; set; } // Take Profit level of the order
|
||||||
public uint Deviation { get; set; } // Maximal possible deviation from the requested price
|
public ulong Deviation { get; set; } // Maximal possible deviation from the requested price
|
||||||
public ENUM_ORDER_TYPE Type { get; set; } // Order type
|
public ENUM_ORDER_TYPE Type { get; set; } // Order type
|
||||||
public ENUM_ORDER_TYPE_FILLING Type_filling { get; set; } // Order execution type
|
public ENUM_ORDER_TYPE_FILLING Type_filling { get; set; } // Order execution type
|
||||||
public ENUM_ORDER_TYPE_TIME Type_time { get; set; } // Order expiration type
|
public ENUM_ORDER_TYPE_TIME Type_time { get; set; } // Order expiration type
|
||||||
|
|||||||
Reference in New Issue
Block a user