Hi,

do you anybody know, how to:

During the train I get this error:

Error 049: Too many trades per bar (47176 at bar 14008)
Error 111: Crash in run: run() at bar 14008


I try this:
LifeTime = 2;
MaxLong = MaxShort = -1; // only 1 open trade


but no change - still is a error 049

my code...
Code

void runAdvise(int ii){
        
    vLong12[ii] = adviseLong(PATTERN+FAST+RETURNS,0,
        idxM15_1, 
        idxM15_2, 
        idxM15_3, 
        idxM60_1, 
        idxM60_2,
        Peak,
        Valley  
    ); 
    vShort12[ii] = adviseShort();
    
    if (lReady && Train){
        if (vLong12[ii]>90) enterLong();
        if (vShort12[ii]>90) enterShort();
    }
}

....

void tryOrder(){
  
    algo("T_12");
        ... prepare data idx1..5
        runAdvise(0);
    
    algo("T_42");
        ... prepare data
        runAdvise(1);

    algo("D_7");
        ... prepare data
        runAdvise(2);


    algo("D_14");
        ... prepare data
        runAdvise(3);

    if (Test){
        algo("total");
            testFinal();
    }
   
}