Summary
A stop order is an order to buy or sell once the price of the symbol reaches a specified price.
Syntax
PendingOrderType.Stop
Example 1
foreach (var order in PendingOrders) { if(order.OrderType == PendingOrderType.Stop) Print(order.Id); }
PendingOrderType.Stop
foreach (var order in PendingOrders) { if(order.OrderType == PendingOrderType.Stop) Print(order.Id); }