TakeProfit Property¶ Summary¶ The order take profit in price Signature¶ 1public abstract double? TakeProfit {get;} Return Value¶ double? Declaring Type¶ cAlgo.API.PendingOrder Examples¶ 1 2 3 4 var result = PlaceLimitOrder(TradeType.Buy, Symbol, 10000, Symbol.Bid, null, 10, 10); var order = result.PendingOrder; Print("Order TP price = {0}", order.TakeProfit); Last update: January 27, 2023