PDA

View Full Version : is there a way to see if NT got disconnected at night


HelloHello
10-03-2007, 02:45 PM
Basically what I do is cancel limit orders after a specific time period if they are not filled. The function NTCancel works great because all I have to do is pass NTCancel the name of the limit order... however if NT is disconnected at night and reconnects it loses the names of the limit orders.

So what I would like to do is

if NT was NOT disconnected at night then
NTCancel();

if NT was disconnect at night then
begin
if time >= xxxx then
cancelallorders;
end;

end;

NinjaTrader_Ray
10-03-2007, 03:03 PM
Unfortunately this is not possible.

Ray