Summary
True if a trade operation is being executed, false if it completed
Syntax
public bool IsExecuting{ get; }
Example 1
TradeOperation operation = ExecuteMarketOrderAsync(TradeType.Buy, Symbol, 20000, "myLabel"); // ... if (!operation.IsExecuting) { Print("Trade executed"); }