Re: [amibroker] Re: What language is AFL written in?

2008-02-26 Thread wavemechanic
I use Title() for the same purpose. Wish we had a button that automatically displayed the values. Bill - Original Message - From: Ed Hoopes [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Tuesday, February 26, 2008 1:37 AM Subject: [amibroker] Re: What language is AFL written

Re: [amibroker] Re: What language is AFL written in?

2008-02-26 Thread wavemechanic
:37 AM Subject: [amibroker] Re: What language is AFL written in? I use printf as a quick and dirty way to see values of variables for debugging purposes. Like: printf(MyVar = + MyVar + \n ); The output comes out in the Interpretation window. Or to print the individual array values

Re: [amibroker] Re: What language is AFL written in?

2008-02-26 Thread wavemechanic
with a click in whatever output is desired. In the meantime, we all stumble along. Bill - Original Message - From: Herman To: wavemechanic Cc: AmiBroker, User Sent: Tuesday, February 26, 2008 8:55 AM Subject: Re: [amibroker] Re: What language is AFL written in? ToolTip

Re: [amibroker] Re: What language is AFL written in?

2008-02-26 Thread wavemechanic
- Original Message - From: Herman To: wavemechanic Cc: AmiBroker, User Sent: Tuesday, February 26, 2008 8:55 AM Subject: Re: [amibroker] Re: What language is AFL written in? ToolTip = ? using \n and selected bar, you have

Re: [amibroker] Re: What language is AFL written in?

2008-02-26 Thread wavemechanic
:12 AM Subject: Re: [amibroker] Re: What language is AFL written in? For that i use tool-tips, or PlotText() at the selected bar. I guess i am missing the point... best regards, herman For tips on developing Real-Time Auto-Trading systems visit: http://www.amibroker.org

Re: [amibroker] Re: What language is AFL written in?

2008-02-26 Thread wavemechanic
: wavemechanic To: amibroker@yahoogroups.com Sent: Tuesday, February 26, 2008 10:27 AM Subject: Re: [amibroker] Re: What language is AFL written in? Think through the process. First you define the variable and then enter into tooltip. Later you add/delete variables and then modify tooltip

Re: [amibroker] Re: What language is AFL written in?

2008-02-26 Thread Dennis Brown
To: wavemechanic Cc: amibroker@yahoogroups.com Sent: Tuesday, February 26, 2008 10:12 AM Subject: Re: [amibroker] Re: What language is AFL written in? For that i use tool-tips, or PlotText() at the selected bar. I guess i am missing the point... best regards, herman For tips on developing Real

[amibroker] Re: What language is AFL written in?

2008-02-26 Thread JD Fagan
--- In amibroker@yahoogroups.com, Ed Hoopes [EMAIL PROTECTED] wrote: I use printf as a quick and dirty way to see values of variables for debugging purposes. Like: printf(MyVar = + MyVar + \n ); The output comes out in the Interpretation window. Shorthand notation for above code that

[amibroker] Re: What language is AFL written in?

2008-02-25 Thread Ed Hoopes
I use printf as a quick and dirty way to see values of variables for debugging purposes. Like: printf(MyVar = + MyVar + \n ); The output comes out in the Interpretation window. Or to print the individual array values to the Interpretation window: for(i = 1; i barcount; i++) {