| 
 PureBytes Links 
Trading Reference Links 
 | 
> I have TS2000i.  I have a system that works on 5 minute bars but is
> dependent that all 5 minute bars are present. In some cases I noticed a
> stock can be missing a 5 minute bar. Anyone know how to test  to see if a
> 5 minute bar is missing so that I can compensate for it in my system?
try the calctime function (i assume it's still in ts2k).
working from memory but i think the syntax is something like...
if time = calctime(time[1],5) or time = calctime(sess1starttime,5)
    then {whatever}
    else {whatever};
-- 
   Dennis
 |