Skip to content

StopLimit Field

Summary

A stop limit order is an order to buy or sell once the price of the symbol reaches specific price.Order has a parameter for maximum distance from that target price, where it can be executed.

Signature

1
public static PendingOrderType StopLimit;

Return Value

PendingOrderType

Declaring Type

cAlgo.API.PendingOrderType

Examples

1
2
3
4
5
 foreach (var order in PendingOrders)
 {
     if(order.OrderType == PendingOrderType.StopLimit)
         Print(order.Id);
 }

Last update: March 23, 2023