Hi,

I have a need to create arrays dynamically. Is this possible? I have 
tried several ways including the following but without success:


for (n = 0; n<= tickers-1; n++) 
    {

       for( j = period-1; j <= BarCount-1; j++)
          {
                   
             ID[j] = osTabGet( n, 2 * j + 2, mytable );

           } 
        myarray = "ID"+n;
        myarray = ID;
    }

Tom

Reply via email to