PureBytes Links
Trading Reference Links
|
At 9:34 PM +1000 11/12/01, jonmac wrote:
>y = BP[xc,0];
>BnF = BP[y,1];
>
>I figured this type of array might work but only to find an error
>message......"Tried to reference data in an array past the end or befroe the
>beginning of the array"
>
>Any help would be greatly appreciated.
The reference looks correct.
I assume you declared the array before using the code you listed:
Array: BP[4,4](0);
You would get that error message if either xc or y was outside the
range of the array.
Bob Fulks
|