Hi

I am using plotdate and plotbars to go through the trades in the backtest so that I can improve the enter/exit conditions.
So I choose a period of time, I click test, I look at the picture and I do it again and again.
I wondered then if it is posible to split the backtest in differet periods of time so that the picture only correspond to that period of time. In that way each period would have the right resolution and all the candels could be observed.
Something like:
Quote:
function SplitBacktestResult(var Ar);
{
//here it is defined how to split the picture of the backtest
}
function run()
{
..
Array_Time[12] = {January, February, ... };
StartDate=2015;
SplitBacktestResult(Array_Time);
..
}