A short question please to the platform experts about initial values of build-in variables:
Wenn coding lines like
condition=close < close[1]
and the code line is evaluated at barindex=0, which value does the variable close[1] ( or say all close[n] for n>0 ) assume?
For example, is this always reliably set equal to close[0], or to undefined, or can it be an arbitrary value depending on platform memory varying conditions?
From the answer, it should become clear which value the variable condition would assume at barindex=0?
Likewise, do other build-in variables have a predefined behaviour when attempting to call previous data at barindex=0?
Thank you.