Variable Stoploss

 

Hey guys, how would i go about in mql4 code aquiring the lowest close price for the last 8 candles (as a stoploss). Once the code has the lowest, i can assign it to a variable and make reference to it.

Thanx,

Graham

 

Hi

See the hel of 'Lowest' function in mq4.

I think code like this would do the trick:

double val=Close[Lowest(NULL,0,MODE_CLOSE, 8, 0)];

This would include the current candle as well, replace the last 0

with 1 if you want to ignore current candle.

Aki

 

Nice thanx! I'll test it out today to see how it works.

Update: Works amazing.

Graham

Reason: