Skip to content

Position Property

Summary

The resulting position of a trade request.

Signature

1
public Position Position {get;}

Return Value

Position

Declaring Type

cAlgo.API.TradeResult

Examples

1
2
3
 TradeResult result = ExecuteMarketOrder(TradeType.Sell, Symbol, 50000);
 if (result.IsSuccessful)
     Print("Sell at {0}", result.Position.EntryPrice);

Last update: March 23, 2023