Tester ticks question

 

Hi,

i would know if in Tester, when using "Every ticks based on real ticks" mode, the EA and its indicators (called using iCustom) are processed for each tick without escaping some ticks as happen in live charts. Maybe i need to add property "tester_everytick_calculate" on both EA and indicators?

 
antony23:

i would know if in Tester, when using "Every ticks based on real ticks" mode, the EA and its indicators (called using iCustom) are processed for each tick without escaping some ticks as happen in live charts. Maybe i need to add property "tester_everytick_calculate" on both EA and indicators?

EAs get called on all ticks.

Indicators trade on all ticks in visual testing mode by default, to get them get called on every ticks in other modes (non-visual, optimization) you need to specify tester_everytick_calculate directive in the source code. The directive takes effect in indicators only.

 
Stanislav Korotky #:

EAs get called on all ticks.

Indicators trade on all ticks in visual testing mode by default, to get them get called on every ticks in other modes (non-visual, optimization) you need to specify tester_everytick_calculate directive in the source code. The directive takes effect in indicators only.

Thanks