At my skill level of programming I did download the fancy debugger,
but ended up never using it.

I use printf - 

printf("EURO - look for reversals from:" + ArgA + "\n" );
printf("     > +/-1.2 for a single signal  " + "\n" );

to get single values of variables.  the values are displayed in the
Interpretation window.  The value displayed depends on the bar that
you click on.

If I want to look at a specific array element:

printf("Array[17] = " + ArgA[17] + "\n" );

If I want to look at an entire array:

for( i = 0; i < BarCount; i++)
{
printf("Var[" + i + "] = " + Var[i] + "\n" );
}

Ed Hoopes




--- In amibroker@yahoogroups.com, "Herman" <[EMAIL PROTECTED]> wrote:
>
> http://www.microsoft.com/technet/sysinternals/default.mspx
> 
> -----Original Message-----
> From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED]
> Behalf Of Homar Simpson
> Sent: December 3, 2006 11:03 PM
> To: amibroker@yahoogroups.com
> Subject: [amibroker] Wheres the decent debugging or tracing tools. Cant
> find anything
> 
> 
>   Are these buried in the docs somewhere?
> 
> 
> 
> Please note that this group is for discussion between users only.
> 
> To get support from AmiBroker please send an e-mail directly to 
> SUPPORT {at} amibroker.com
> 
> For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> http://www.amibroker.com/devlog/
> 
> For other support material please check also:
> http://www.amibroker.com/support.html
>  
> Yahoo! Groups Links
>


Reply via email to