private bool BarRises()
{
if ((Highs[2][1] - Lows[2][1]) < (Lows[2][1] * 0.13))
return true;
else
return false;
ManyThingsCount++;
Print (Instrument.FullName + " "+Times[0][0].ToString("MM/dd/yy HH:mm:ss")+" : "+ManyThingsCount);
}
If all of my custom methods iterate to the "ManyThingsCount", will this give tick-by-tick count I am looking for? If not, could you suggest a working version?
Thanks in advance.

Comment