Backtesting : Problem with Forwardtest ...

 

Hi Forum ,


Iam backtesting my bot. I have to Trailingstop paramenters : Trailing_Distance and Trailing_Step.

It doent make sence if the value of Trailing_Step is higher than the value of Tailing_Distance. Therefore I check these both values at first in my Ontick():


if (Trailing_Step > Trailing_Distance)

     return ;


This saves a lot time filtering the senseless configurations in my optimazation, but I get a lot results with 0 trades and 0 Profit/Loss.

The forward then allways pics these results without any trades for forward testing so I dont get any forward result at all..


Maybe someone can give me an idea how to handle this..


thanks


Filip