Nathamus
03-13-2007, 12:12 AM
Hello!
To enter Long positions with Limit orders using Quantity, Price and Signal Name
I can use the following order
EnterLongLimit(int quantity, double price, string signalName);
I wounder if there is a simmilar overload for the ExitLongLimit? I cannot find it. I would like to place the following order:
ExitLongLimit(int quantity, double limitPrice, string SignalName);
But I can only place:
ExitLongLimit(int quantity, double limitPrice, string SignalName, string fromEntrySignal);
and
ExitLongLimit(int quantity, double limitPrice, string fromEntrySignal);
As a result I cannot identify the source of a sell Limit Order on the order page.
My strategy creates lots of orders. For debugging purpose I need to identify which ExitLongLimit order was executed in a spefic situation. When I take a look at the Order Page all ExitLongLimit orders are identified as "sell" orders.
Any ideas? Is there a possibility to customize the order type overloads?
thx
To enter Long positions with Limit orders using Quantity, Price and Signal Name
I can use the following order
EnterLongLimit(int quantity, double price, string signalName);
I wounder if there is a simmilar overload for the ExitLongLimit? I cannot find it. I would like to place the following order:
ExitLongLimit(int quantity, double limitPrice, string SignalName);
But I can only place:
ExitLongLimit(int quantity, double limitPrice, string SignalName, string fromEntrySignal);
and
ExitLongLimit(int quantity, double limitPrice, string fromEntrySignal);
As a result I cannot identify the source of a sell Limit Order on the order page.
My strategy creates lots of orders. For debugging purpose I need to identify which ExitLongLimit order was executed in a spefic situation. When I take a look at the Order Page all ExitLongLimit orders are identified as "sell" orders.
Any ideas? Is there a possibility to customize the order type overloads?
thx