| New signals service! | |
|
|||||||
| Register in Forex TSD! | |
|
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time). Click here to register and get more information |
|
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
What's the best way to check if the tick is the first tick of the new bar?
I found in the sample code, it uses
Code:
if(Volume[0]>1) return; |
|
|||
|
I know every time new bar appears, Bars will change and IndicatorCounted() changes just one tick after Bars changes, so could I just use a static int to restore the Bars and compares the new Bars to that int? What I worry is that maybe there is a maximum number for Bars and Bars will not change after reaching that number, is that right?
Last edited by blooms; 02-20-2006 at 04:05 PM. |
|
||||
|
I always use:
Code:
bool IsNewBar()
{
static datetime lastbar = 0;
datetime curbar = Time[0];
if(lastbar!=curbar)
{
lastbar=curbar;
return (true);
}
else
{
return(false);
}
}
Hope that helps! -CS
__________________
Join the MultiBroker M1 and TICK Data Bank Project Imagine 90-99% modeling quality in MT4 back testing with free data from your broker! Come see our current list of covered brokers. |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Tick Indicator | Alex.Piech.FinGeR | Metatrader 4 | 95 | 08-30-2008 08:27 PM |
| Problem using Variables Tick-by-Tick | unltdsoul | Metatrader 4 | 2 | 07-04-2006 03:36 AM |
| Using tick data? 100% MQ? | Willis11of12 | Metatrader 4 | 5 | 03-28-2006 03:20 PM |