
03-30-2006, 02:02 PM
|
 |
Senior Member
|
|
Join Date: Oct 2005
Posts: 987
|
|
Quote:
|
Originally Posted by intelligent_14
I prefer to use this solution for finding new Bars
HTML Code:
bool NewBar()
{
static datetime LastTime;
if (LastTime != Time[0])
{
LastTime = Time[0];
return(true);
}
return(false);
}
it's seems to be shorter 
|
Yes this is good one!
|