PureBytes Links
Trading Reference Links
|
Thanks for your help. I thought the key word was initialization and
looked in the help index with no luck. Thanks, again. Lloyd
--- In amibroker@xxxxxxxxxxxxxxx, "wavemechanic" <fimdot@xxx> wrote:
>
> Did you look at the Users Manual or Help? Either one would give you
the following:
>
>
> Error 29. Variable <name> used without having been initialized.
> You can not use (read) the variable that was not initialized first.
You should assign the value to the variable before reading it.
>
> Example (incorrect usage):
>
> x = 1;
> z = x + y; // wrong, y is not initialized
>
> Correct usage would look like this:
>
>
> x = 1; // initialize x
> y = 2; // initialize y
> z = x + y; // correct, both x and y are initialized
>
>
> ----- Original Message -----
> From: "burlap58" <burlap58@xxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Tuesday, September 25, 2007 4:27 PM
> Subject: [amibroker] Initialization
>
>
> >
> > I'm getting the following error message. How do I deal with it?
> > Thanks, Lloyd
> >
> >
> > Error 29.
> > Variable 'testlow' used without having been initialized.
> >
> >
> >
> > 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
> >
> >
> >
>
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
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|