Forum

Checking values and skip combination in backtesting

Hi, im developing a simple ema cross strategy. Ema1 (fast): from 1 to 100 Ema2 (slow) from 2 to 1000 In some cases, fast ema will get 99 as value, and slow could have same value, or lower. That is useless... how can I say to the strategy tester something like: If (fast >= slow) { skip

Use custom input to optimizer

Hi, im trying to optimize some EA, and i want to use the output of one EA as the input of the second. For example, think in EMA, in first optimizer I use 5 to 20, 1 by 1, and got 6 8 15 and 17 How can i use that info as input for another EA (instead of trying again from 5 to 20)? Obviously, there