PureBytes Links
Trading Reference Links
|
Bob,
something like this maybe? I'm not certain that all the system code
could be nested this way and people with different missing bars would
still have descrepancies but, at least, the descrepancies would be documented.
if T=T of data2 and D=D of data2 then begin
{...system code...}
end
else begin
{...document missing data into file or to screen...}
end;
|