Very quick candle question

 

Hello

I was wondering can someone please confirm:

On the current candle you refer to the candle body as close and open

if(AtrVerified){if(Atr(0)>Atr(1)&&(Close[0]>lev[0][1]+(Pointnoreturn*Point*mno))){

If I wanted to reference the shadow and not the main body would I replace the Close[0] be something like (depending on the candle being bear or bull):

Lowest[0] and highest[0]

Or 

Low[0] and high[0]

Or 
ilowest[0] and ihighest[0] 

Thanks

Antony

 
tonyjms2005:

Hello

I was wondering can someone please confirm:

On the current candle you refer to the candle body as close and open

If I wanted to reference the shadow and not the main body would I replace the Close[0] be something like (depending on the candle being bear or bull):

Thanks

Antony

For the current candle use High[0] and Low[0].

iLowest() and iHighest() are used when searching for the lowest/highest candle price amog several candles. Note that these functions don't return price but candle number.

 

Hi

Excellent thank you for your help and quick reply.

Thanks

Antony