does anybody know if it is possible to have the backtester read more than one strategy at a time,
ie.
if (system 1 entry == true)
Strategy.isLong
if (system 2 entry == true) // currently this would close system 1
Strategy2.isShort
if(system 2 exit == true) // but this will not reopen system 1 as
strategy2.isCover // the strategy is now not in trade
if(system1 exit == true)
Strategy.isSell
ie.
if (system 1 entry == true)
Strategy.isLong
if (system 2 entry == true) // currently this would close system 1
Strategy2.isShort
if(system 2 exit == true) // but this will not reopen system 1 as
strategy2.isCover // the strategy is now not in trade
if(system1 exit == true)
Strategy.isSell
Comment