I use:
[CODE]if (Historical) return;CODE]
when running live strategies (all of them go green immediately without having to wait for yellow strats to turn green) to ignore the immediate last signal if it is in the middle of a trade.
However, when that is on, that strategy will not backtest while it is like that.
I am wondering, if I activate the strategies with it ON and then once they are enabled, go into the code and turn the [CODE]if (Historical) return;CODE] OFF with [CODE]//if (Historical) return;CODE] will that effect the currently running strategies when they were enabled when [CODE]if (Historical) return;CODE] was ON?
I have be playing with it and it appears to be ok and I remember having discussions before how when the strategies are loaded and enabled then changes to the code would not effect the enable ones (from the past I remember). I just want to be sure and get your take on it.
So, I would like to be sure I can do this so that I can effectively run short and brief backtests using that method if I ever so choose to do it in the future (there would not be real heavy backtesting)...

Greg

Comment