PureBytes Links
Trading Reference Links
|
if it has an array identifier, in thos case [bar] then it is processed
as an array
If not then it is scalar value, but only the last value of scalar
values inside a loop will be passed back to the normal AFL, only
arrays can have different values to be read after the loop in the AFL.
--
Cheers
Graham
AB-Write >< Professional AFL Writing Service
Yes, I write AFL code to your requirements
http://www.aflwriting.com
On 19/06/07, gp_sydney <gp.investment@xxxxxxxxx> wrote:
> It's a single number, not an array.
>
> I'm not sure how the AFL interpreter decides, but I'm guessing the
> preprocessor probably scans the file first to see if it's used as an
> array anywhere and makes it an array if it is, otherwise it makes it a
> single number. That's just a guess though.
>
> GP
>
>
> --- In amibroker@xxxxxxxxxxxxxxx, "xxnospamxx" <_sdavis@xxx> wrote:
> >
> > In the code below, is sellBar1 an array or a scalar?
> > How does afl decide whether to allocate an array?
> >
> > sellBar1 = -100;
> > for (bar = 1; bar < BarCount; bar++)
> > {
> > if (sellTrigger[bar])
> > {
> > Sell[bar] = 1;
> > sellBar1 = bar;
> > }
> > }
> >
>
>
>
>
> 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/
|