Supercharged MT4 Backtester

 

I was running MT4 on a P3 800 Mhtz w/ 256 MB.

It was very slow, so I bought a P4 3 Ghtz w/ 2 GB RAM.

The backtester is not any faster than it was before. I think the code is dependent on the Windows clock opposed to the CPU clock.

Does anyone know how to unlock MT4 from this restriction?

 

check your Indicator codes, most time bad codes waste these time

'Multiple Null Bar Re-Count in Some Indicators'

 

The IsTesting() boolean lets you specify operations to be/not be performed while in backtest, like, don't print, don't comment, don't draw stuff, etc

if(!IsTesting()){ // not in test mode

... do things that are time consuming but maybe not essential to the test

}

Reason: