Currently, you would set Min Bars Required manually in the back-test window, but, yes, if you set BarsRequired in Initialize, it will fill this value in for you.
Mike Bryant
if (BarsSinceEntry() == 0)
{
LStop = Position.AvgPrice - MMStopSz/Instrument.MasterInstrument.PointValue;
}
if (BarsSinceEntry() == BTAdjust)