Steve,
This seems to work for the 'SetStopLoss':
int lowest_bar = iLowest(symbol,0,MODE_LOW,5,0);
double stop = iLow(symbol,0,lowest_bar);
instead of:
double stop = Low[iLowest(symbol,0,MODE_LOW,5,0)];
PeeJay
This seems to work for the 'SetStopLoss':
int lowest_bar = iLowest(symbol,0,MODE_LOW,5,0);
double stop = iLow(symbol,0,lowest_bar);
instead of:
double stop = Low[iLowest(symbol,0,MODE_LOW,5,0)];
PeeJay