Thread
:
One Order per Bar.......
View Single Post
#
2
(
permalink
)
05-09-2006, 01:15 AM
Maji
Senior Member
Join Date: Mar 2006
Posts: 787
Use the following at the beginning of your start code:
datetime timeprev=0;
int start()
{
//Check for New Bar
if(timeprev==Time[0])
return(0);
timeprev=Time[0];
// Calculations go here
} //Start
Maji
View Public Profile
Find all posts by Maji