Gets a collection of all opening orders. Access to the orders can be obtained by index.
SYNTAX
public Order[] GetOrders (bool addSLTP)
PARAMETERS
addSLTP — bool
if true, Stop Loss and Take Profit order will be add to Order array.
RETURN
Order[] returns array with all active orders.
EXAMPLE
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using PTLRuntime.NETScript;
namespace Examples
{
public class OrdersCollectionExample : NETStrategy
{
public override void Init()
{
orders = Orders.GetOrders(false);
foreach (Order ord in orders)
{
Print("Order with ID: " + ord.Id + " set on price " + ord.Price);
}
}
}
}