Look at the Cum() function in the user guide.
http://www.amibroker.com/guide/afl/afl_view.php?id=35

Mike

--- In [email protected], "schnitt_tt" <schnitt...@...> wrote:
>
> ok, a "solution" that doesn`t make me happy:
> 
> it_array[0] = 1;
> it_array[1] = 13333;
> it_array[2] = 133;
> it_array[3] = Null;
> 
> 
> a  = False;
> for( i = 0; i < 9999; i++ ) 
> {  
>     a = IsNull(it_array[i]);
>     if ( a )
>      break;
>     else
>     {
>       .....
>       
>     }
> } 
> 
>  -> but leads to the problem with arrays that have  "Null" Values !!!
> 
> it_array[0] = 1;
> it_array[1] = Null;
> it_array[2] = 133;
> it_array[3] = Null;
>


Reply via email to