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

Re: Signal Name



PureBytes Links

Trading Reference Links

that works fine - of course it isn't quite as easy with a limit order where
you don't know whether your order was executed except by testing prices on
subsequent bars.

just hoping there might have been an undocumented function which would have
made the process a little easier.
-----Original Message-----
From: DStan34930@xxxxxxx <DStan34930@xxxxxxx>
To: omega-list@xxxxxxxxxx <omega-list@xxxxxxxxxx>
Date: December 17, 1998 12:15 AM
Subject: Re: Signal Name


>I'm not sure this is the answer you need but when I need to refer to a
>specific
>entry within a system module I do the following....
>
>if mp<>1 then b1=0;
>
>If conditionX then begin
>  BUY on the close;b1=1;
>end;
>
>{...now I know if b1 is currently active if b1=1 and I can use this value
to
>activate exits...etc... specifically for this entry.}
>
>dbs
>
>
>
>