PureBytes Links
Trading Reference Links
|
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
<*> 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/
|