Heavy EA in backtesting
-
I created an EA that is apparently working right, but when running backtesting in "every tick" it is too heavy and takes a long time. Am I perhaps put the blocks in the wrong place? What is the tabs (on init, on timer, on tick, on trade, onchart, on deinit)? I put all the blocks on the "on tick". Does this not let the EA too heavy? thank you.
-
you was right to put into "on tick", and if it is slow, it is because on every tick runs all your blocks in "on tick" event, if you will speed up it in tester, you can try you conditions with candle ID[1 and >1] runs with block "once per bar"
