In reading threads here, I've found some different interpretations of how best to use array values. Quick question. I have the following within an initialization loop:
xATR = efsInternal("ATR",mShort);
xATR = getSeries(xATR);
Later, I reference selected values as xATR.getValue(n). Do I need the second statement above from an efficiency standpoint? I can't see much difference in performance. Thanks.
xATR = efsInternal("ATR",mShort);
xATR = getSeries(xATR);
Later, I reference selected values as xATR.getValue(n). Do I need the second statement above from an efficiency standpoint? I can't see much difference in performance. Thanks.
Comment