Order CLASS

CancelAsync (Action<bool> callback) METHOD (Return: bool)
Cancels the order asynchronously. SYNTAX public bool CancelAsync (Action<bool> callback) PARAMETERS callback — Action The callback fu...
Sat, May 5, 2018 at 11:03 AM
Modify (ReplaceOrderRequest request) METHOD (Return: bool)
Replace this order by modifying some of it's parameters. SYNTAX public bool Modify (ReplaceOrderRequest request) PARAMETERS request —...
Sat, May 5, 2018 at 11:06 AM
Modify (double newPrice) METHOD (Return: bool)
Replace this order by modifying its price. SYNTAX public bool Modify (double newPrice) PARAMETERS newPrice — double new order price RET...
Sat, May 5, 2018 at 11:07 AM
Modify (double newPrice, double newAmount) METHOD (Return: bool)
Replace this order by modifying its price and amount. SYNTAX public bool Modify (double newPrice,double newAmount) PARAMETERS newPrice — dou...
Sat, May 5, 2018 at 11:10 AM
RemoveStopLoss () METHOD (Return: bool)
Removes current stop-loss order SYNTAX public bool RemoveStopLoss () RETURN bool Return true if stop-loss order removed successfully, otherwi...
Sat, May 5, 2018 at 11:11 AM
RemoveStopLossAsync (Action<bool> callback) METHOD (Return: bool)
Removes current stop-loss order asynchronously. SYNTAX public bool RemoveStopLossAsync (Action<bool> callback) PARAMETERS callback — Ac...
Sat, May 5, 2018 at 11:12 AM
RemoveTakeProfit () METHOD (Return: bool)
Removes current take-profit order. SYNTAX public bool RemoveTakeProfit () RETURN bool Return true if take-profit order removed successfully,...
Sat, May 5, 2018 at 11:13 AM
RemoveTakeProfitAsync (Action<bool> callback) METHOD (Return: bool)
Removes current take-profit order asynchronously. SYNTAX public bool RemoveTakeProfitAsync (Action<bool> callback) PARAMETERS callback ...
Sat, May 5, 2018 at 11:15 AM
SetStopLoss (double slPrice) METHOD (Return: bool)
Sets a new (modifies existed) stop-loss order. SYNTAX public bool SetStopLoss (double slPrice) PARAMETERS slPrice — double Price of the stop-...
Sat, May 5, 2018 at 11:16 AM
SetStopLossAsync (double slPrice, Action<bool> callback) METHOD (Return: bool)
Sets a new (modifies existed) stop-loss order asynchronously. SYNTAX public bool SetStopLossAsync (double slPrice,Action<bool> callback) P...
Sat, May 5, 2018 at 11:19 AM