Good morning to everybody,
On the Back Testing Tutorial 2
Could somebody please explain the difference between this
fixed stop exit Strategy
if (open(0) <= nStop) {
Strategy.dosell("Long Stop", Strategy.MARKET, Strategy.THISBAR);
bExitFlag = true;
and.....
}else if (low(0) <= nStop) {
Strategy.doSell("Long Stop" , Strategy.STOP, Strategy.THISBAR, Strategy.ALL, nStop);
what does each of the do?
thanks a lot...
Jaime
On the Back Testing Tutorial 2
Could somebody please explain the difference between this
fixed stop exit Strategy
if (open(0) <= nStop) {
Strategy.dosell("Long Stop", Strategy.MARKET, Strategy.THISBAR);
bExitFlag = true;
and.....
}else if (low(0) <= nStop) {
Strategy.doSell("Long Stop" , Strategy.STOP, Strategy.THISBAR, Strategy.ALL, nStop);
what does each of the do?
thanks a lot...
Jaime
Comment