Hi,
I have an array which need need to clear again at the end of an efs:
vLowPrice = new Array(nLength);
if (vLowPrice[nLength-1] != null) vLowPrice.pop();
vLowPrice.unshift(vLowHLC3);
Can somebody tell me how to clear this array ? Or any array for that matter ?
Thanks
Roger
I have an array which need need to clear again at the end of an efs:
vLowPrice = new Array(nLength);
if (vLowPrice[nLength-1] != null) vLowPrice.pop();
vLowPrice.unshift(vLowHLC3);
Can somebody tell me how to clear this array ? Or any array for that matter ?
Thanks
Roger
Comment