Skip to content

Comment Property

Summary

User assigned Order Comment

Signature

1
public abstract string Comment {get;}

Return Value

string

Declaring Type

cAlgo.API.PendingOrder

Examples

1
2
3
4
 var result = PlaceLimitOrder(TradeType.Buy, Symbol, 10000,
                 Symbol.Bid, null, 10, 10, null, "this is a comment");
 var order = result.PendingOrder;
 Print("comment = {0}", order.Comment);

Last update: March 23, 2023