Is there a way to EXCLUDE a time range in Strategy Tester?

 

I have a certain month in my backtest that is consistently abberant (March 2020) and skews my strategy.

How could I exclude that month from testing?

Thanks!! 😎

 
input datetime InpSkipFrom = D'1.3.2020';
input datetime InpSkipTill = D'1.4.2020';

void OnTick()
  {
   datetime now=TimeCurrent();
   if(now>=InpSkipFrom && now<InpSkipTill)
      return;
   ...
  }