back test speed Decreases ?! - page 2

 
countedBars=3500;
if(prevtime != Time[0])
ArrayResize(Buffer1,countedBars);ArrayInitialize(Buffer1,0.0);
  1. Computing all bars
  2. No need for new bar code in indicators.
  3. No need for arrays, indicators have buffers.
  4. Do your loop properly.
              Detailed explanation of iCustom - MQL4 and MetaTrader 4 - MQL4 programming forum
 
You may have less ticks in your past history compared to the recent years. 
 
whroeder1:
  1. Computing all bars
  2. No need for new bar code in indicators.
  3. No need for arrays, indicators have buffers.
  4. Do your loop properly.
              Detailed explanation of iCustom - MQL4 and MetaTrader 4 - MQL4 programming forum

thank you.

i will try some modification.


Laszlo Tormasi:
You may have less ticks in your past history compared to the recent years. 

thank you.


Mehrdad Shiri:

THANK you to reply.

i rewrite all my indicators in EA . so there is no iCustom function. and for the indicator i use 6 array[3000] to store as  buffer.

the expert have large algorithem . more than 5500 line in code. and so many calculation.

molty time frame , multy currency, 

all them are used from the first. so should not to be different between fist 24 hour and the other. 

for first 24 hour it past from 2000.01.01 to 2008.01.... and for

(approximately ) 2th 24 hour it past to 2010.02 and in 3th 24 hour it was 2012.08 and 

after 77 hour it is at 2013.04.... and its continuing....

is this explanation will clearly some thing ?

and the latest was until 2015.01.19 in 30 minute ago.

the speed is more slow maybe 1~1.5 year in "24" hour.








thank you.