Difference between Close[] and iClose ?

 

Hi,


What is the difference between the time series functions iClose, iOpen, etc and the predefined arrays Close[],Open[], etc?

I don't really see a difference except the choice of timeframe and symbol. Is iClose(Symbol(), 0, i) == Close[i] ?


cheers

 
oracle1:

Hi,


What is the difference between the time series functions iClose, iOpen, etc and the predefined arrays Close[],Open[], etc?

I don't really see a difference except the choice of timeframe and symbol. Is iClose(Symbol(), 0, i) == Close[i] ? Yes


cheers


 

Whatever[] variables will fetch from the current timeframe and chart only.

iWhatever() functions will fetch from anything you want although usually they are used to access other timeframes rather than other pairs.

Jon

 
thanks for the answers.