[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Night Owl System



PureBytes Links

Trading Reference Links

I don't see it!

When run on a tickbar chart this sometimes exits before the open of the day
session and sometimes it doesn't!!! anyone got an idea how I can get this
statement to call trading quits by the day session open and start trading by
the open of the S&P night session? Entries work fine but exits are variable

IF T>sess2starttime and T<> sess2endtime then begin
        <trading logic>
end;
IF T=sess1starttime or T=sess2endtime then begin {both put here because of
frustration}
    if marketposition<0 then exitshort;
    if marketposition>0 then exitlong;
end

Jon