PureBytes Links
Trading Reference Links
|
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
|