Multiple Test Cycles

NumTotalCycles

Repeat the complete simulation in training or test mode in as many cycles as given by this variable (default = 0 = no repetitions). This is normally used for doing reality checks, plotting histograms, running special Montecarlo simulations or evaluating result statistics dependent on changed parameters or randomized price curves.

TotalCycle

The number of the cycle from 1 to NumTotalCycles. Read/only, automatically set by NumTotalCycles.

LogNumber

Appends the given number to the log, trade list, performance report, and chart image files generated by the simulation. By setting LogNumber = TotalCycle, different log files, performance reports, and chart images (when PL_FILE is set) can be generated for any cycle. At 0 (default), no logs, reports, or images are produced when NumTotalCycles is set. Set this variable right at the begin of run or main, before calling any function that might write something into the log. 

Type:

int

Remarks:

Example (see also Detrend.c, MRC.c):

function run()
{
  LogNumber = TotalCycle;
  BarPeriod = 1440;
  StartDate = 2015;
  NumYears = 1;
  LookBack = 0;
 
// run this simulation 1000 times  
  NumTotalCycles = 1000;
 
// some random trading strategy
  if(random() > 0)
    enterLong();
  else 
    enterShort();
 
// plot the result of every run in a bar graph  
  if(is(EXITRUN))
    plotHistogram("Profits",Balance/PIPCost,250,1,RED);   
}

See also:

NumSampleCycles, NumWFOCycles, Log ► latest version online