IProtectable INTERFACE

StopLossOrder PROPERTY (Order)
Gets current stop-loss order or null if it isn't exist. SYNTAX Order StopLossOrder { get; }
Sun, May 6, 2018 at 2:40 PM
TakeProfitOrder PROPERTY (Order)
Gets current take-profit order or null if it isn't exist. SYNTAX Order TakeProfitOrder { get; }
Sun, May 6, 2018 at 2:41 PM
RemoveStopLoss () METHOD (Return: bool)
Removes current stop-loss order SYNTAX bool RemoveStopLoss () RETURN bool Return true if stop-loss order removed successfully, otherwise, fal...
Sun, May 6, 2018 at 2:42 PM
RemoveStopLossAsync (Action<bool> callback) METHOD (Return: bool)
Removes current stop-loss order asynchronously SYNTAX bool RemoveStopLossAsync (Action<bool> callback) PARAMETERS callback — Action Cal...
Sun, May 6, 2018 at 2:47 PM
RemoveTakeProfit () METHOD (Return: bool)
Removes current take-profit order SYNTAX bool RemoveTakeProfit () RETURN bool Return true if take-profit order removed successfully, otherwis...
Sun, May 6, 2018 at 2:49 PM
RemoveTakeProfitAsync (Action<bool> callback) METHOD (Return: bool)
Removes current take-profit order asynchronously SYNTAX bool RemoveTakeProfitAsync (Action<bool> callback) PARAMETERS callback — Action...
Sun, May 6, 2018 at 2:53 PM
SetStopLoss (double slPrice) METHOD (Return: bool)
Sets a new (modifies existed) stop-loss order SYNTAX bool SetStopLoss (double slPrice) PARAMETERS slPrice — double Price of the stop-loss ord...
Sun, May 6, 2018 at 2:57 PM
SetStopLossAsync (double slPrice, Action<bool> callback) METHOD (Return: bool)
Sets a new (modifies existed) stop-loss order asynchronously SYNTAX bool SetStopLossAsync (double slPrice,Action<bool> callback) PARAMETER...
Sun, May 6, 2018 at 3:06 PM
SetStopLossTrail (double slPrice) METHOD (Return: bool)
Sets a new (modifies existed) stop-loss order with trailing SYNTAX bool SetStopLossTrail (double slPrice) PARAMETERS slPrice — double Price o...
Sun, May 6, 2018 at 3:07 PM
SetStopLossTrailAsync (double slPrice, Action<bool> callback) METHOD (Return: bool)
Sets a new (modifies existed) stop-loss order with trailing asynchronously SYNTAX bool SetStopLossTrailAsync (double slPrice,Action<bool> call...
Sun, May 6, 2018 at 3:09 PM